AttachmentLinks.fromJson constructor

AttachmentLinks.fromJson(
  1. Map<String, Object?> json
)

Implementation

factory AttachmentLinks.fromJson(Map<String, Object?> json) {
  return AttachmentLinks(
    webui: json[r'webui'] as String?,
    download: json[r'download'] as String?,
  );
}