SubscriptionsResourcePendingUpdate constructor

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

SubscriptionsResourcePendingUpdate

Pending Updates store the changes pending from a previous update that will be applied to the Subscription upon successful payment.

Implementation

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