BluetoothConfig constructor

BluetoothConfig({
  1. String? name,
  2. String? address,
  3. bool? powered,
  4. required bool pairable,
  5. required num pairableTimeout,
  6. required bool discoverable,
  7. required num discoverableTimeout,
})

Returns a new BluetoothConfig instance.

Implementation

BluetoothConfig({
  this.name,
  this.address,
  this.powered,
  required this.pairable,
  required this.pairableTimeout,
  required this.discoverable,
  required this.discoverableTimeout,
});