AiutaAnalyticsFeedbackEvent constructor

AiutaAnalyticsFeedbackEvent({
  1. required AiutaAnalyticsFeedbackEventType event,
  2. required AiutaAnalyticsPageId pageId,
  3. required List<String> productIds,
  4. int? negativeFeedbackOptionIndex,
  5. String? negativeFeedbackText,
})

Creates a feedback event.

Implementation

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