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