toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final consumerNetwork = this.consumerNetwork;
final endpoint = this.endpoint;
final natIps = this.natIps;
final propagatedConnectionCount = this.propagatedConnectionCount;
final pscConnectionId = this.pscConnectionId;
final status = this.status;
return {
'consumerNetwork': ?consumerNetwork,
'endpoint': ?endpoint,
'natIps': ?natIps,
'propagatedConnectionCount': ?propagatedConnectionCount,
'pscConnectionId': ?pscConnectionId,
'status': ?status,
};
}