identify method
Implementation
Future<void> identify({
required String userId,
dynamic userProperties,
String? userHash,
}) async {
String? stringifiedHashMap = jsonEncode(userProperties);
await GleapJsSdkHelper.identify(userId, stringifiedHashMap, userHash);
}