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