BluetoothDeviceInfo constructor

const BluetoothDeviceInfo({
  1. required String name,
  2. required String address,
  3. BluetoothTransportType type = BluetoothTransportType.classic,
})

Implementation

const BluetoothDeviceInfo({
  required this.name,
  required this.address,
  this.type = BluetoothTransportType.classic,
});