BleDiscoveredDevice constructor

BleDiscoveredDevice({
  1. required String name,
  2. required String deviceId,
  3. required int rssi,
  4. required DateTime timeStamp,
  5. required String connectionPoolId,
})

Constructs a BleDiscoveredDevice instance with the provided information.

  • name: The name of the BLE device.
  • deviceId: The unique identifier of the BLE device.
  • rssi: The signal strength (RSSI) of the BLE device.
  • timeStamp: The time the device was discovered.
  • connectionPoolId: The connection pool ID of the device.

Implementation

BleDiscoveredDevice({
  required this.name,
  required this.deviceId,
  required this.rssi,
  required this.timeStamp,
  required this.connectionPoolId,
});