toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final ipAddress = this.ipAddress;
final ipv6Address = this.ipv6Address;
final projectIdOrNum = this.projectIdOrNum;
final secondaryIpCidrRanges = this.secondaryIpCidrRanges;
final status = this.status;
final subnetwork = this.subnetwork;
final subnetworkCidrRange = this.subnetworkCidrRange;
return {
'ipAddress': ?ipAddress,
'ipv6Address': ?ipv6Address,
'projectIdOrNum': ?projectIdOrNum,
'secondaryIpCidrRanges': ?secondaryIpCidrRanges,
'status': ?status,
'subnetwork': ?subnetwork,
'subnetworkCidrRange': ?subnetworkCidrRange,
};
}