Subscriptions constructor

Subscriptions({
  1. String? id,
  2. String? subscriberId,
  3. String? price,
  4. String? originalPackagePrice,
  5. String? status,
  6. String? wallet,
  7. String? paymentHash,
  8. String? currency,
  9. int? passengerChangeCounter,
  10. String? package,
  11. String? expiryDate,
  12. String? type,
  13. String? name,
  14. String? createdAt,
  15. String? updatedAt,
  16. int? neoMilesPaymentPercentage,
  17. int? maxExclusiveBookings,
  18. int? neoOneMonthlySubscription,
  19. int? adultPassengerLimit,
  20. bool? isComplimentary,
})

Implementation

Subscriptions({
  this.id,
  this.subscriberId,
  this.price,
  this.originalPackagePrice,
  this.status,
  this.wallet,
  this.paymentHash,
  this.currency,
  this.passengerChangeCounter,
  this.package,
  this.expiryDate,
  this.type,
  this.name,
  this.createdAt,
  this.updatedAt,
  this.neoMilesPaymentPercentage,
  this.maxExclusiveBookings,
  this.neoOneMonthlySubscription,
  this.adultPassengerLimit,
  this.isComplimentary,
});