ChatItemQuote.fromJson constructor

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

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']),
    };