PreservedStatePreservedNetworkIpIpAddress.fromJson constructor
      
      PreservedStatePreservedNetworkIpIpAddress.fromJson(
    
    
- Map json_
 
Implementation
PreservedStatePreservedNetworkIpIpAddress.fromJson(core.Map json_)
    : this(
        address: json_.containsKey('address')
            ? json_['address'] as core.String
            : null,
        literal: json_.containsKey('literal')
            ? json_['literal'] as core.String
            : null,
      );