setWorkerHandle method Null safety
- String workerHandle
A primary identifier that uniquely identifies the worker outside of HyperTrack. Example: email, phone number, database id It is usually obtained and set when the worker logs into the app. Set it to an empty string "" when the worker logs out of the app to un-bind the device from the worker and avoid unintentional tracking.
Implementation
static void setWorkerHandle(String workerHandle) {
_invokeSdkVoidMethod(
SdkMethod.setWorkerHandle, serializeWorkerHandle(workerHandle));
}