AiutaAnalyticsTryOnEvent constructor

AiutaAnalyticsTryOnEvent({
  1. required AiutaAnalyticsTryOnEventType event,
  2. required AiutaAnalyticPageId pageId,
  3. required String productId,
  4. String? errorMessage,
})

Creates a try-on event.

Implementation

AiutaAnalyticsTryOnEvent({
  required this.event,
  required this.pageId,
  required this.productId,
  this.errorMessage,
}) : super(
        type: AiutaAnalyticEventType.pickerEvent,
        pageId: pageId,
        productId: productId,
      );