CancelFlowConfig constructor

CancelFlowConfig({
  1. required bool enabled,
  2. required List<CancelFlowQuestion> questions,
  3. CancelFlowOffer? offer,
  4. CancelFlowPauseConfig? pause,
  5. int? variantId,
})

Implementation

CancelFlowConfig({
  required this.enabled,
  required this.questions,
  this.offer,
  this.pause,
  this.variantId,
});