reportStoryStepClicked method
void
reportStoryStepClicked(
- CEPTriggerPayload payload, {
- required int itemIndex,
- String? ctaLabel,
- String? actionType,
A CTA inside a story frame was tapped.
Implementation
void reportStoryStepClicked(
CEPTriggerPayload payload, {
required int itemIndex,
String? ctaLabel,
String? actionType,
}) {
_events.toDigia(
StoriesStepClicked(
itemIndex: itemIndex,
ctaLabel: ctaLabel,
actionType: actionType,
),
payload,
);
}