NetworkInterface constructor

NetworkInterface({
  1. String? adapterDescription,
  2. String? cidr,
  3. String? interfaceName,
  4. String? ipAddress,
  5. String? macAddress,
  6. String? speed,
  7. String? vlanId,
})

Implementation

NetworkInterface({
  this.adapterDescription,
  this.cidr,
  this.interfaceName,
  this.ipAddress,
  this.macAddress,
  this.speed,
  this.vlanId,
});