CancelFlowResponse constructor

CancelFlowResponse({
  1. required String productId,
  2. required String userId,
  3. required CancelFlowOutcome outcome,
  4. required List<CancelFlowAnswer> answers,
  5. required bool offerShown,
  6. required bool offerAccepted,
  7. required bool pauseShown,
  8. required bool pauseAccepted,
  9. int? pauseDurationDays,
})

Implementation

CancelFlowResponse({
  required this.productId,
  required this.userId,
  required this.outcome,
  required this.answers,
  required this.offerShown,
  required this.offerAccepted,
  required this.pauseShown,
  required this.pauseAccepted,
  this.pauseDurationDays,
});