fromJson static method

UserPrivacySettingRuleAllowAll? fromJson(
  1. Map<String, dynamic>? json
)
override

Implementation

static UserPrivacySettingRuleAllowAll? fromJson(Map<String, dynamic>? json) {
  if (json == null) {
    return null;
  }

  return const UserPrivacySettingRuleAllowAll();
}