Subscription constructor

Subscription({
  1. SubscriptionData? data,
  2. bool? first,
  3. String? idCustomer,
  4. String? idPlan,
  5. String? ip,
  6. String? methodConfirmation,
  7. String? nextVerificationDate,
  8. List? paymentAttempts,
  9. String? periodEnd,
  10. PeriodStart? periodStart,
  11. String? status,
  12. String? tokenCard,
  13. String? urlConfirmation,
})

Implementation

Subscription({
  this.data,
  this.first,
  this.idCustomer,
  this.idPlan,
  this.ip,
  this.methodConfirmation,
  this.nextVerificationDate,
  this.paymentAttempts,
  this.periodEnd,
  this.periodStart,
  this.status,
  this.tokenCard,
  this.urlConfirmation,
});