toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (displayName != null) 'displayName': displayName!,
  if (networkUri != null) 'networkUri': networkUri!,
  if (region != null) 'region': region!,
  if (remoteGateway != null) 'remoteGateway': remoteGateway!,
  if (remoteGatewayIp != null) 'remoteGatewayIp': remoteGatewayIp!,
  if (routingType != null) 'routingType': routingType!,
  if (sourceGateway != null) 'sourceGateway': sourceGateway!,
  if (sourceGatewayIp != null) 'sourceGatewayIp': sourceGatewayIp!,
  if (uri != null) 'uri': uri!,
};