reportEvent static method
void
reportEvent(})
Report event to AppMetrica and uxcam (disabled in debug mode)
adjustSend
send just a eventName. If you need send extra use DSAdjust.trackEvent
Implementation
static void reportEvent(
String eventName, {
bool fbSend = false,
bool adjustSend = false,
bool amplitudeSend = true,
Map<String, Object>? attributes,
Map<String, Object>? fbAttributes,
int stackSkip = 1,
EventSendingType eventSendingType = EventSendingType.everyTime,
}) =>
reportEventWithMap(
eventName,
attributes,
fbSend: fbSend,
adjustSend: adjustSend,
amplitudeSend: amplitudeSend,
fbAttributes: fbAttributes,
stackSkip: stackSkip + 1,
eventSendingType: eventSendingType,
);