BluetoothStatus constructor

BluetoothStatus({
  1. bool? powered,
  2. bool? pairable,
  3. bool? discoverable,
})

Returns a new BluetoothStatus instance.

Implementation

BluetoothStatus({
  this.powered,
  this.pairable,
  this.discoverable,
});