BluetoothDevice constructor

BluetoothDevice({
  1. required String advertisementName,
  2. required String bluetoothDeviceId,
  3. required String bluetoothDeviceName,
  4. required String bluetoothDeviceType,
  5. required bool connectable,
  6. required int rssi,
  7. int? txPowerLevel,
})

Implementation

BluetoothDevice({
  required this.advertisementName,
  required this.bluetoothDeviceId,
  required this.bluetoothDeviceName,
  required this.bluetoothDeviceType,
  required this.connectable,
  required this.rssi,
  this.txPowerLevel,
}) : super();