CustomerCenterView constructor

const CustomerCenterView({
  1. Key? key,
  2. bool shouldShowCloseButton = true,
  3. CustomerCenterOnDismiss? onDismiss,
  4. CustomerCenterRestoreStarted? onRestoreStarted,
  5. CustomerCenterRestoreCompleted? onRestoreCompleted,
  6. CustomerCenterRestoreFailed? onRestoreFailed,
  7. CustomerCenterManageSubscriptions? onShowingManageSubscriptions,
  8. CustomerCenterRefundRequestStarted? onRefundRequestStarted,
  9. CustomerCenterRefundRequestCompleted? onRefundRequestCompleted,
  10. CustomerCenterFeedbackSurveyCompleted? onFeedbackSurveyCompleted,
  11. CustomerCenterManagementOptionSelected? onManagementOptionSelected,
  12. CustomerCenterCustomActionSelected? onCustomActionSelected,
})

Implementation

const CustomerCenterView({
  super.key,
  this.shouldShowCloseButton = true,
  this.onDismiss,
  this.onRestoreStarted,
  this.onRestoreCompleted,
  this.onRestoreFailed,
  this.onShowingManageSubscriptions,
  this.onRefundRequestStarted,
  this.onRefundRequestCompleted,
  this.onFeedbackSurveyCompleted,
  this.onManagementOptionSelected,
  this.onCustomActionSelected,
});