DeviceConfiguration constructor

DeviceConfiguration({
  1. bool? lan,
  2. bool? wan,
  3. bool? wifi,
  4. bool? accessPoint,
  5. bool? bluetooth,
  6. bool? modem,
  7. bool? geolocator,
})

Returns a new DeviceConfiguration instance.

Implementation

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