ChatMessageMixin$Attachments.fromJson constructor
Implementation
factory ChatMessageMixin$Attachments.fromJson(Map<String, dynamic> json) {
switch (json['__typename'].toString()) {
case r'ImageAttachment':
return ChatMessageMixin$Attachments$ImageAttachment.fromJson(json);
case r'FileAttachment':
return ChatMessageMixin$Attachments$FileAttachment.fromJson(json);
default:
}
return _$ChatMessageMixin$AttachmentsFromJson(json);
}