deviceId property Null safety
A string which is used to uniquely identify the user.
Implementation
Future<String> get deviceId async {
return _invokeSdkMethod(SdkMethod.getDeviceId).then((value) {
return deserializeDeviceId(value);
});
}
A string which is used to uniquely identify the user.
Future<String> get deviceId async {
return _invokeSdkMethod(SdkMethod.getDeviceId).then((value) {
return deserializeDeviceId(value);
});
}