Subscription constructor

Subscription({
  1. String? id,
  2. String? subscriberId,
  3. String? price,
  4. String? status,
  5. String? wallet,
  6. String? paymentHash,
  7. String? currency,
  8. int? passengerChangeCounter,
  9. String? package,
  10. DateTime? expiryDate,
  11. String? type,
  12. int? maxTotalBooking,
  13. int? neoMilesPaymentPercentage,
  14. int? neoOneMonthlySubscription,
  15. String? paymentId,
  16. DateTime? createdAt,
  17. DateTime? updatedAt,
})

Implementation

Subscription({
  this.id,
  this.subscriberId,
  this.price,
  this.status,
  this.wallet,
  this.paymentHash,
  this.currency,
  this.passengerChangeCounter,
  this.package,
  this.expiryDate,
  this.type,
  this.maxTotalBooking,
  this.neoMilesPaymentPercentage,
  this.neoOneMonthlySubscription,
  this.paymentId,
  this.createdAt,
  this.updatedAt,
});