fromJson static method
Inherited by: UserPrivacySettingRuleAllowAll UserPrivacySettingRuleAllowBots UserPrivacySettingRuleAllowChatMembers UserPrivacySettingRuleAllowContacts UserPrivacySettingRuleAllowPremiumUsers UserPrivacySettingRuleAllowUsers UserPrivacySettingRuleRestrictAll UserPrivacySettingRuleRestrictBots UserPrivacySettingRuleRestrictChatMembers UserPrivacySettingRuleRestrictContacts UserPrivacySettingRuleRestrictUsers
Implementation
static UserPrivacySettingRuleAllowAll? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return const UserPrivacySettingRuleAllowAll();
}