ChatItem.fromJson constructor
Constructs a ChatItem from the provided json
.
Implementation
factory ChatItem.fromJson(Map<String, dynamic> json) =>
switch (json['runtimeType']) {
'ChatMessage' => ChatMessage.fromJson(json),
'ChatCall' => ChatCall.fromJson(json),
'ChatInfo' => ChatInfo.fromJson(json),
'ChatForward' => ChatForward.fromJson(json),
_ => throw UnimplementedError(json['runtimeType']),
};