toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final controlPlaneNodePort = this.controlPlaneNodePort;
final ingressHttpNodePort = this.ingressHttpNodePort;
final ingressHttpsNodePort = this.ingressHttpsNodePort;
final konnectivityServerNodePort = this.konnectivityServerNodePort;
return {
'controlPlaneNodePort': ?controlPlaneNodePort,
'ingressHttpNodePort': ?ingressHttpNodePort,
'ingressHttpsNodePort': ?ingressHttpsNodePort,
'konnectivityServerNodePort': ?konnectivityServerNodePort,
};
}