toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final accessConfigs = this.accessConfigs;
final network = this.network;
final nicType = this.nicType;
final subnet = this.subnet;
return {
'accessConfigs': ?accessConfigs,
'network': ?network,
'nicType': ?nicType,
'subnet': ?subnet,
};
}