BleDiscoveredDevice constructor
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,
});