VpnGatewayStatusTunnel.fromJson constructor
VpnGatewayStatusTunnel.fromJson(
- Map json_
Implementation
VpnGatewayStatusTunnel.fromJson(core.Map json_)
: this(
localGatewayInterface: json_.containsKey('localGatewayInterface')
? json_['localGatewayInterface'] as core.int
: null,
peerGatewayInterface: json_.containsKey('peerGatewayInterface')
? json_['peerGatewayInterface'] as core.int
: null,
tunnelUrl: json_.containsKey('tunnelUrl')
? json_['tunnelUrl'] as core.String
: null,
);