Subscriptions constructor

Subscriptions({
  1. String? id,
  2. int? payerId,
  3. String? payerEmail,
  4. String? backUrl,
  5. int? collectorId,
  6. int? applicationId,
  7. String? status,
  8. String? reason,
  9. String? externalReference,
  10. DateTime? dateCreated,
  11. DateTime? lastModified,
  12. Details? details,
  13. String? paymentMethodId,
  14. String? cardId,
  15. String? nextPaymentDate,
  16. String? payerFirstName,
  17. String? paymentMethod,
})

Implementation

Subscriptions(
    {this.id,
    this.payerId,
    this.payerEmail,
    this.backUrl,
    this.collectorId,
    this.applicationId,
    this.status,
    this.reason,
    this.externalReference,
    this.dateCreated,
    this.lastModified,
    this.details,
    this.paymentMethodId,
    this.cardId,
    this.nextPaymentDate,
    this.payerFirstName,
    this.paymentMethod});