toJson method

Map<String, dynamic> toJson()

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,
  };
}