toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final displayName = this.displayName;
  final networkUri = this.networkUri;
  final region = this.region;
  final remoteGateway = this.remoteGateway;
  final remoteGatewayIp = this.remoteGatewayIp;
  final routingType = this.routingType;
  final sourceGateway = this.sourceGateway;
  final sourceGatewayIp = this.sourceGatewayIp;
  final uri = this.uri;
  return {
    'displayName': ?displayName,
    'networkUri': ?networkUri,
    'region': ?region,
    'remoteGateway': ?remoteGateway,
    'remoteGatewayIp': ?remoteGatewayIp,
    'routingType': ?routingType,
    'sourceGateway': ?sourceGateway,
    'sourceGatewayIp': ?sourceGatewayIp,
    'uri': ?uri,
  };
}