Subscription constructor

Subscription({
  1. int? version,
  2. String? id,
  3. String? customerId,
  4. SubscriptionStatus? status,
  5. String? locationId,
  6. String? createdAt,
  7. SubscriptionSource? source,
  8. String? cardId,
  9. List<SubscriptionAction>? actions,
  10. String? canceledDate,
  11. String? chargedThroughDate,
  12. List<String>? invoiceIds,
  13. String? planId,
  14. Money? priceOverrideMoney,
  15. String? startDate,
  16. String? taxPercentage,
  17. String? timezone,
})

Implementation

Subscription(
    {this.version,
    this.id,
    this.customerId,
    this.status,
    this.locationId,
    this.createdAt,
    this.source,
    this.cardId,
    this.actions,
    this.canceledDate,
    this.chargedThroughDate,
    this.invoiceIds,
    this.planId,
    this.priceOverrideMoney,
    this.startDate,
    this.taxPercentage,
    this.timezone});