BluetoothDevice constructor

BluetoothDevice({
  1. required String name,
  2. required String address,
  3. required bool connected,
  4. required bool remembered,
})

Implementation

BluetoothDevice({
  required this.name,
  required this.address,
  required this.connected,
  required this.remembered,
});