ConnectedBluetoothDeviceInfo constructor

const ConnectedBluetoothDeviceInfo({
  1. String? name,
  2. required String macAddress,
  3. required String bondState,
  4. required String type,
  5. String? alias,
  6. int? bluetoothClass,
  7. List<String> sourceProfiles = const [],
})

Implementation

const ConnectedBluetoothDeviceInfo({
  this.name,
  required this.macAddress,
  required this.bondState,
  required this.type,
  this.alias,
  this.bluetoothClass,
  this.sourceProfiles = const [],
});