fromJson static method
Inherited by: InviteGroupCallParticipantResultSuccess InviteGroupCallParticipantResultUserAlreadyParticipant InviteGroupCallParticipantResultUserPrivacyRestricted InviteGroupCallParticipantResultUserWasBanned
Implementation
static InviteGroupCallParticipantResultUserWasBanned? fromJson(
Map<String, dynamic>? json,
) {
if (json == null) {
return null;
}
return const InviteGroupCallParticipantResultUserWasBanned();
}