BluetoothDevice constructor

BluetoothDevice({
  1. String? name,
  2. String? address,
  3. int? type,
  4. bool? connected,
})

Implementation

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