ChatMessageMixin$Attachments.fromJson constructor

ChatMessageMixin$Attachments.fromJson(
  1. Map<String, dynamic> json
)

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);
}