reportEvent static method

void reportEvent(
  1. String eventName, {
  2. bool fbSend = false,
  3. bool adjustSend = false,
  4. bool amplitudeSend = true,
  5. Map<String, Object>? attributes,
  6. Map<String, Object>? fbAttributes,
  7. int stackSkip = 1,
  8. EventSendingType eventSendingType = EventSendingType.everyTime,
})

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,
    );