ExternalVpnGatewayInterface.fromJson constructor

ExternalVpnGatewayInterface.fromJson(
  1. Map json_
)

Implementation

ExternalVpnGatewayInterface.fromJson(core.Map json_)
    : this(
        id: json_.containsKey('id') ? json_['id'] as core.int : null,
        ipAddress: json_.containsKey('ipAddress')
            ? json_['ipAddress'] as core.String
            : null,
        ipv6Address: json_.containsKey('ipv6Address')
            ? json_['ipv6Address'] as core.String
            : null,
      );