NetworkConfig constructor

NetworkConfig({
  1. LanConfig? lan,
  2. WanConfig? wan,
  3. WifiConfig? wifi,
  4. AccessPointConfig? accessPoint,
  5. ModemConfig? modem,
  6. GeolocatorConfig? geolocator,
  7. BluetoothConfig? bluetooth,
})

Returns a new NetworkConfig instance.

Implementation

NetworkConfig({
  this.lan,
  this.wan,
  this.wifi,
  this.accessPoint,
  this.modem,
  this.geolocator,
  this.bluetooth,
});