getDeviceUniqueIdentifier method

Future getDeviceUniqueIdentifier({
  1. required String guid,
})

Returns the BLE unique device identifier for a device identified by guid.

Uses the BLE device manager (_getBle).

Implementation

Future<dynamic> getDeviceUniqueIdentifier({required String guid}) {
  return _getBle(
    CapturePropertyIds.uniqueDeviceIdentifier,
    CapturePropertyTypes.string,
    guid,
  );
}