Subscription constructor

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

Implementation

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