NetworkStatus constructor

NetworkStatus({
  1. LanStatus? lan,
  2. WanStatus? wan,
  3. WifiStatus? wifi,
  4. AccessPointStatus? accessPoint,
  5. GeolocatorStatus? geolocator,
  6. ModemStatus? modem,
  7. BluetoothStatus? bluetooth,
})

Returns a new NetworkStatus instance.

Implementation

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