NestedChatMessageMixin$Attachments.fromJson constructor

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

Implementation

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