trackEvent

abstract fun trackEvent(eventName: String, parameters: Map<String, Any?>)

Trckr invoke this method to track event.

It can be not called when type of this adapter is listed in skipAdapters parameter of @Event annotation.

Parameters

eventName

Name of the event. It can be either name parameter of @Event annotation or method name of event if name is empty.

parameters

Map of converted parameters to track. Keys are names specified by name parameter of @Param annotation. Values are 'values' that was successfully passed conversion phase.