Subscription constructor

const Subscription(
  1. String id,
  2. String? planId,
  3. SubscriptionStatus? status,
  4. String? statusChangeNote,
  5. String? statusUpdateTime,
  6. String? startTime,
  7. String? quantity,
  8. Money? shippingAmount,
  9. Subscriber? subscriber,
  10. SubscriptionBillingInfo? billingInfo,
  11. String? createTime,
  12. String? updateTime,
  13. String? customId,
  14. bool? planOverridden,
  15. Plan? plan,
  16. List<LinkDescription>? links,
)

Implementation

const Subscription(
    this.id,
    this.planId,
    this.status,
    this.statusChangeNote,
    this.statusUpdateTime,
    this.startTime,
    this.quantity,
    this.shippingAmount,
    this.subscriber,
    this.billingInfo,
    this.createTime,
    this.updateTime,
    this.customId,
    this.planOverridden,
    this.plan,
    this.links);