toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final allocatablePrefixLength = this.allocatablePrefixLength;
final delegateeProject = this.delegateeProject;
final description = this.description;
final enableEnhancedIpv4Allocation = this.enableEnhancedIpv4Allocation;
final ipCidrRange = this.ipCidrRange;
final ipv6AccessType = this.ipv6AccessType;
final isAddress = this.isAddress;
final mode = this.mode;
final name = this.name;
final region = this.region;
final status = this.status;
return {
'allocatablePrefixLength': ?allocatablePrefixLength,
'delegateeProject': ?delegateeProject,
'description': ?description,
'enableEnhancedIpv4Allocation': ?enableEnhancedIpv4Allocation,
'ipCidrRange': ?ipCidrRange,
'ipv6AccessType': ?ipv6AccessType,
'isAddress': ?isAddress,
'mode': ?mode,
'name': ?name,
'region': ?region,
'status': ?status,
};
}