AiutaAnalyticsTryOnEvent constructor
AiutaAnalyticsTryOnEvent({
- required AiutaAnalyticsTryOnEventType event,
- required AiutaAnalyticsPageId pageId,
- required List<
String> productIds, - AiutaAnalyticsTryOnEventErrorType? errorType,
- String? errorMessage,
- AiutaAnalyticsTryOnAbortedReasonType? abortReason,
- double? uploadDuration,
- double? tryOnDuration,
- double? downloadDuration,
- double? totalDuration,
Creates a try-on event.
Implementation
AiutaAnalyticsTryOnEvent({
required this.event,
required this.pageId,
required List<String> productIds,
this.errorType,
this.errorMessage,
this.abortReason,
this.uploadDuration,
this.tryOnDuration,
this.downloadDuration,
this.totalDuration,
}) : super(
type: AiutaAnalyticsEventType.picker,
pageId: pageId,
productIds: productIds,
);