AiutaAnalyticsPickerEvent constructor

AiutaAnalyticsPickerEvent({
  1. required AiutaAnalyticsPickerEventType event,
  2. required AiutaAnalyticsPageId pageId,
  3. required List<String> productIds,
})

Creates a picker event.

Implementation

AiutaAnalyticsPickerEvent({
  required this.event,
  required this.pageId,
  required List<String> productIds,
}) : super(
        type: AiutaAnalyticsEventType.picker,
        pageId: pageId,
        productIds: productIds,
      );