NetworkAddress constructor

NetworkAddress({
  1. String? assignment,
  2. String? bcast,
  3. String? fqdn,
  4. String? ipAddress,
  5. String? subnetMask,
})

Implementation

NetworkAddress({
  this.assignment,
  this.bcast,
  this.fqdn,
  this.ipAddress,
  this.subnetMask,
});