toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final networkUri = this.networkUri;
final region = this.region;
final selectedIpAddress = this.selectedIpAddress;
final selectedIpRange = this.selectedIpRange;
final subnetworkUri = this.subnetworkUri;
return {
'networkUri': ?networkUri,
'region': ?region,
'selectedIpAddress': ?selectedIpAddress,
'selectedIpRange': ?selectedIpRange,
'subnetworkUri': ?subnetworkUri,
};
}