reportEvent static method

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

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