AiutaAnalyticsSessionEvent constructor
AiutaAnalyticsSessionEvent({
- required AiutaAnalyticsFlowType flow,
- required List<
String> productIds, - AiutaAnalyticsPageId? pageId,
Creates a session event.
Implementation
AiutaAnalyticsSessionEvent({
required this.flow,
required List<String> productIds,
AiutaAnalyticsPageId? pageId,
}) : super(
type: AiutaAnalyticsEventType.session,
pageId: pageId,
productIds: productIds,
);