BluetoothDevice constructor

BluetoothDevice({
  1. required String id,
  2. required String name,
  3. required String address,
  4. required bool isConnected,
  5. int? rssi,
  6. List<String> serviceUuids = const [],
})

Implementation

BluetoothDevice({
  required this.id,
  required this.name,
  required this.address,
  required this.isConnected,
  this.rssi,
  this.serviceUuids = const [],
});