BluetoothDevice constructor

BluetoothDevice({
  1. required String? id,
  2. required String? name,
  3. required int? type,
  4. required String? alias,
  5. required BondState? bondState,
})

Implementation

BluetoothDevice({
  required this.id,
  required this.name,
  required this.type,
  required this.alias,
  required this.bondState,
});