SubscriptionPendingUpdate constructor

const SubscriptionPendingUpdate({
  1. DateTime? billingCycleAnchor,
  2. required DateTime expiresAt,
  3. List<SubscriptionItem>? subscriptionItems,
  4. DateTime? trialEnd,
  5. bool? trialFromPlan,
})

If specified, [pending updates](https://stripe.com/docs/billing/subscriptions/pending-updates) that will be applied to the subscription once the `latest_invoice` has been paid.

Implementation

const SubscriptionPendingUpdate({
  this.billingCycleAnchor,
  required this.expiresAt,
  this.subscriptionItems,
  this.trialEnd,
  this.trialFromPlan,
});