AttachmentUpdateContainer.fromJson constructor
Implementation
factory AttachmentUpdateContainer.fromJson(Map<String, Object?> json) {
return AttachmentUpdateContainer(
id: json[r'id'] as String? ?? '',
type: json[r'type'] as String? ?? '',
);
}