Subnetwork constructor

Subnetwork({
  1. String? ipCidrRange,
  2. String? name,
  3. String? network,
  4. bool? outsideAllocation,
  5. String? region,
  6. List<SecondaryIpRange>? secondaryIpRanges,
})

Implementation

Subnetwork({
  this.ipCidrRange,
  this.name,
  this.network,
  this.outsideAllocation,
  this.region,
  this.secondaryIpRanges,
});