Data constructor

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

Implementation

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