identify method

Future<void> identify({
  1. required String userId,
  2. Map<String, Object>? userProperties,
  3. Map<String, Object>? userPropertiesSetOnce,
})

Implementation

Future<void> identify({
  required String userId,
  Map<String, Object>? userProperties,
  Map<String, Object>? userPropertiesSetOnce,
}) {
  return _posthog.identify(
      userId: userId,
      userProperties: userProperties,
      userPropertiesSetOnce: userPropertiesSetOnce);
}