toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final localGatewayInterface = this.localGatewayInterface;
  final peerGatewayInterface = this.peerGatewayInterface;
  final tunnelUrl = this.tunnelUrl;
  return {
    'localGatewayInterface': ?localGatewayInterface,
    'peerGatewayInterface': ?peerGatewayInterface,
    'tunnelUrl': ?tunnelUrl,
  };
}