AiutaAnalyticsSessionEvent constructor

AiutaAnalyticsSessionEvent({
  1. required AiutaAnalyticsFlowType flow,
  2. required List<String> productIds,
  3. 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,
      );