identify method
Future
identify({
- String? userId,
- UserTraits? userTraits,
- 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);
}