ChatItemQuote.fromJson constructor
Constructs a ChatItemQuote from the provided json
.
Implementation
factory ChatItemQuote.fromJson(Map<String, dynamic> json) =>
switch (json['runtimeType']) {
'ChatMessageQuote' => ChatMessageQuote.fromJson(json),
'ChatCallQuote' => ChatCallQuote.fromJson(json),
'ChatInfoQuote' => ChatInfoQuote.fromJson(json),
_ => throw UnimplementedError(json['runtimeType']),
};