Subnet constructor

Subnet({
  1. String? gatewayIp,
  2. String? ipCidrRange,
  3. String? name,
  4. String? state,
  5. String? type,
  6. int? vlanId,
})

Implementation

Subnet({
  this.gatewayIp,
  this.ipCidrRange,
  this.name,
  this.state,
  this.type,
  this.vlanId,
});