DtoChatItem.fromJson constructor
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']),
};