AiutaAnalyticsFeedbackEvent constructor

AiutaAnalyticsFeedbackEvent({
  1. required AiutaAnalyticsFeedbackEventType event,
  2. required AiutaAnalyticPageId pageId,
  3. required String productId,
  4. int? negativeFeedbackOptionIndex,
  5. String? negativeFeedbackText,
})

Creates a feedback event.

Implementation

AiutaAnalyticsFeedbackEvent({
  required this.event,
  required this.pageId,
  required this.productId,
  this.negativeFeedbackOptionIndex,
  this.negativeFeedbackText,
}) : super(
        type: AiutaAnalyticEventType.pickerEvent,
        pageId: pageId,
        productId: productId,
      );