trackCustomAction method
void
trackCustomAction({})
Tracks a custom event.
Use trackCustomEvent
to track a custom action such as a form.
Implementation
void trackCustomAction({
String? actionName,
PerformanceInfo? performanceInfo,
String? pvId,
Map<String, String>? customActions,
}) =>
_track(
MatomoAction(
action: actionName,
pvId: pvId,
performanceInfo: performanceInfo,
),
customActions: customActions,
);