identify method

  1. @override
Future identify({
  1. String? userId,
  2. UserTraits? userTraits,
  3. EnrichmentClosure? enrichment,
})
override

Implementation

@override
Future identify({String? userId, UserTraits? userTraits, EnrichmentClosure? enrichment}) async {
  final event = IdentifyEvent(userId: userId, traits: userTraits);

  await _process(event, enrichment: enrichment);
}