toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final dhcpIpConfig = this.dhcpIpConfig;
final haControlPlaneConfig = this.haControlPlaneConfig;
final hostConfig = this.hostConfig;
final podAddressCidrBlocks = this.podAddressCidrBlocks;
final serviceAddressCidrBlocks = this.serviceAddressCidrBlocks;
final staticIpConfig = this.staticIpConfig;
final vcenterNetwork = this.vcenterNetwork;
return {
'dhcpIpConfig': ?dhcpIpConfig,
'haControlPlaneConfig': ?haControlPlaneConfig,
'hostConfig': ?hostConfig,
'podAddressCidrBlocks': ?podAddressCidrBlocks,
'serviceAddressCidrBlocks': ?serviceAddressCidrBlocks,
'staticIpConfig': ?staticIpConfig,
'vcenterNetwork': ?vcenterNetwork,
};
}