setUserId method
Implementation
Future<void> setUserId(final String identity) async {
try {
if (identity.isNotNullAndEmpty) {
_channel.invokeMethod('setUserId', identity);
}
} on Exception catch (e) {
Logger.i("$e Error in addPxIdentity");
}
}