reportEvent static method
void
reportEvent(})
Report event to AppMetrica and UserX (disabled in debug mode)
Implementation
static void reportEvent(
String eventName, {
bool fbSend = false,
Map<String, Object>? attributes,
Map<String, Object>? fbAttributes,
int stackSkip = 1,
EventSendingType eventSendingType = EventSendingType.everyTime,
}) =>
reportEventWithMap(
eventName,
attributes,
fbSend: fbSend,
fbAttributes: fbAttributes,
stackSkip: stackSkip + 1,
eventSendingType: eventSendingType,
);