BluetoothDevice constructor

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

Implementation

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