NetworkInterface constructor

NetworkInterface({
  1. String? network,
  2. String? nicType,
  3. bool? noExternalIpAddress,
  4. String? subnetwork,
})

Implementation

NetworkInterface({
  this.network,
  this.nicType,
  this.noExternalIpAddress,
  this.subnetwork,
});