fromJson static method
Inherited by: UserPrivacySettingAllowCalls UserPrivacySettingAllowChatInvites UserPrivacySettingAllowFindingByPhoneNumber UserPrivacySettingAllowPeerToPeerCalls UserPrivacySettingAllowPrivateVoiceAndVideoNoteMessages UserPrivacySettingAllowUnpaidMessages UserPrivacySettingAutosaveGifts UserPrivacySettingShowBio UserPrivacySettingShowBirthdate UserPrivacySettingShowLinkInForwardedMessages UserPrivacySettingShowPhoneNumber UserPrivacySettingShowProfileAudio UserPrivacySettingShowProfilePhoto UserPrivacySettingShowStatus
Implementation
static UserPrivacySettingShowProfileAudio? fromJson(
Map<String, dynamic>? json,
) {
if (json == null) {
return null;
}
return const UserPrivacySettingShowProfileAudio();
}