toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final appGateway = this.appGateway;
final ingressPort = this.ingressPort;
final l7psc = this.l7psc;
final type = this.type;
final uri = this.uri;
return {
'appGateway': ?appGateway,
'ingressPort': ?ingressPort,
'l7psc': ?l7psc,
'type': ?type,
'uri': ?uri,
};
}