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