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