ChatItem.fromJson constructor

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

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