ChatMembersDialed.fromJson constructor

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

Constructs a ChatMembersDialed from the provided json.

Implementation

factory ChatMembersDialed.fromJson(Map<String, dynamic> json) =>
    switch (json['runtimeType']) {
      'ChatMembersDialedAll' => ChatMembersDialedAll.fromJson(json),
      'ChatMembersDialedConcrete' => ChatMembersDialedConcrete.fromJson(json),
      _ => throw UnimplementedError(json['runtimeType']),
    };