DtoChatItem.fromJson constructor

DtoChatItem.fromJson(
  1. Map<String, dynamic> json
)

Constructs a DtoChatItem from the provided json.

Implementation

factory DtoChatItem.fromJson(Map<String, dynamic> json) =>
    switch (json['runtimeType']) {
      'DtoChatMessage' => DtoChatMessage.fromJson(json),
      'DtoChatCall' => DtoChatCall.fromJson(json),
      'DtoChatInfo' => DtoChatInfo.fromJson(json),
      'DtoChatForward' => DtoChatForward.fromJson(json),
      _ => throw UnimplementedError(json['runtimeType']),
    };