UsableSubnetworkSecondaryRange.fromJson constructor
      
      UsableSubnetworkSecondaryRange.fromJson(
    
    
- Map json_
 
Implementation
UsableSubnetworkSecondaryRange.fromJson(core.Map json_)
    : this(
        ipCidrRange: json_.containsKey('ipCidrRange')
            ? json_['ipCidrRange'] as core.String
            : null,
        rangeName: json_.containsKey('rangeName')
            ? json_['rangeName'] as core.String
            : null,
      );