BillingPortalSessionFlow constructor

const BillingPortalSessionFlow({
  1. required PortalFlowsFlowAfterCompletion afterCompletion,
  2. BillingPortalSessionFlowSubscriptionCancel? subscriptionCancel,
  3. BillingPortalSessionFlowSubscriptionUpdate? subscriptionUpdate,
  4. BillingPortalSessionFlowSubscriptionUpdateConfirm? subscriptionUpdateConfirm,
  5. required BillingPortalSessionFlowType type,
})

Information about a specific flow for the customer to go through. See the [docs](https://stripe.com/docs/customer-management/portal-deep-links) to learn more about using customer portal deep links and flows.

Implementation

const BillingPortalSessionFlow({
  required this.afterCompletion,
  this.subscriptionCancel,
  this.subscriptionUpdate,
  this.subscriptionUpdateConfirm,
  required this.type,
});