AiutaAnalyticsFeedbackEvent constructor
AiutaAnalyticsFeedbackEvent({
- required AiutaAnalyticsFeedbackEventType event,
- required AiutaAnalyticPageId pageId,
- required String productId,
- int? negativeFeedbackOptionIndex,
- 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,
);