Network constructor

Network({
  1. String? cidr,
  2. String? gatewayIp,
  3. String? id,
  4. String? ipAddress,
  5. bool? jumboFramesEnabled,
  6. Map<String, String>? labels,
  7. List<String>? macAddress,
  8. List<NetworkMountPoint>? mountPoints,
  9. String? name,
  10. String? pod,
  11. List<NetworkAddressReservation>? reservations,
  12. String? servicesCidr,
  13. String? state,
  14. String? type,
  15. String? vlanId,
  16. VRF? vrf,
  17. String? vrfAttachment,
})

Implementation

Network({
  this.cidr,
  this.gatewayIp,
  this.id,
  this.ipAddress,
  this.jumboFramesEnabled,
  this.labels,
  this.macAddress,
  this.mountPoints,
  this.name,
  this.pod,
  this.reservations,
  this.servicesCidr,
  this.state,
  this.type,
  this.vlanId,
  this.vrf,
  this.vrfAttachment,
});