identify method

Future<void> identify(
  1. String profileId, {
  2. String? firstName,
  3. String? lastName,
  4. String? email,
  5. String? avatar,
  6. Map<String, Object?>? properties,
})

Creates or updates a user profile and binds subsequent events to it.

Implementation

Future<void> identify(
  String profileId, {
  String? firstName,
  String? lastName,
  String? email,
  String? avatar,
  Map<String, Object?>? properties,
}) {
  throw UnimplementedError('identify() has not been implemented.');
}