toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final allocationOptions = this.allocationOptions;
final createTime = this.createTime;
final description = this.description;
final excludeCidrRanges = this.excludeCidrRanges;
final immutable = this.immutable;
final ipCidrRange = this.ipCidrRange;
final labels = this.labels;
final migration = this.migration;
final name = this.name;
final network = this.network;
final overlaps = this.overlaps;
final peering = this.peering;
final prefixLength = this.prefixLength;
final targetCidrRange = this.targetCidrRange;
final updateTime = this.updateTime;
final usage = this.usage;
final users = this.users;
return {
'allocationOptions': ?allocationOptions,
'createTime': ?createTime,
'description': ?description,
'excludeCidrRanges': ?excludeCidrRanges,
'immutable': ?immutable,
'ipCidrRange': ?ipCidrRange,
'labels': ?labels,
'migration': ?migration,
'name': ?name,
'network': ?network,
'overlaps': ?overlaps,
'peering': ?peering,
'prefixLength': ?prefixLength,
'targetCidrRange': ?targetCidrRange,
'updateTime': ?updateTime,
'usage': ?usage,
'users': ?users,
};
}