ChatMembersDialed.fromJson constructor
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']),
};