reportEventWithJson static method

Future<void> reportEventWithJson(
  1. String eventName,
  2. String? attributesJson
)

Sends an event message in JSON format attributesJson as a string and a short name or description of the event eventName.

Implementation

static Future<void> reportEventWithJson(
    String eventName, String? attributesJson) =>
    _appMetrica.reportEventWithJson(eventName, attributesJson);