trackEvent method
Future<void>
trackEvent({
- required AppwinAutomationEvent event,
- String? eventName,
- Map<
String, String> ? properties,
override
Implementation
@override
Future<void> trackEvent({
required AppwinAutomationEvent event,
String? eventName,
Map<String, String>? properties,
}) async {
await methodChannel.invokeMethod<void>('trackEvent', {
'event': event.wireValue,
'eventName': ?eventName,
'properties': ?properties,
});
}