toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final externalIpv6Prefix = this.externalIpv6Prefix;
final internalIpv6Prefix = this.internalIpv6Prefix;
final ipCidrRange = this.ipCidrRange;
final ipv6AccessType = this.ipv6AccessType;
final network = this.network;
final purpose = this.purpose;
final role = this.role;
final secondaryIpRanges = this.secondaryIpRanges;
final stackType = this.stackType;
final subnetwork = this.subnetwork;
return {
'externalIpv6Prefix': ?externalIpv6Prefix,
'internalIpv6Prefix': ?internalIpv6Prefix,
'ipCidrRange': ?ipCidrRange,
'ipv6AccessType': ?ipv6AccessType,
'network': ?network,
'purpose': ?purpose,
'role': ?role,
'secondaryIpRanges': ?secondaryIpRanges,
'stackType': ?stackType,
'subnetwork': ?subnetwork,
};
}