reportEventWithMap static method
Sends an event message as a set of attributes attributes
Map and a short name or description of the event eventName
.
Implementation
static Future<void> reportEventWithMap(
String eventName, Map<String, Object>? attributes) =>
_appMetrica.reportEventWithJson(eventName, attributes != null ? jsonEncode(attributes) : null);