Allowed.fromJson constructor
      
      Allowed.fromJson(
    
    
- Map json_
 
Implementation
Allowed.fromJson(core.Map json_)
    : this(
        ipRules: (json_['ipRules'] as core.List?)
            ?.map((value) =>
                IpRule.fromJson(value as core.Map<core.String, core.dynamic>))
            .toList(),
      );