BluetoothDevice constructor

BluetoothDevice({
  1. required String name,
  2. required String address,
  3. bool isConnected = false,
  4. int rssi = 0,
  5. String? deviceClass,
})

Implementation

BluetoothDevice({
  required this.name,
  required this.address,
  this.isConnected = false,
  this.rssi = 0,
  this.deviceClass,
});