Data constructor

Data({
  1. String? uid,
  2. String? referralCode,
  3. bool? isGlobalSalesPool,
  4. bool? isFounder,
  5. bool? isCorporate,
  6. String? wallet,
  7. bool? hasConfirmedBooking,
  8. String? founderShares,
  9. String? parentId,
  10. String? createdAt,
  11. String? updatedAt,
  12. String? loggedInLocation,
  13. Subscriptions? currentSubscription,
  14. List<Subscriptions>? addons,
  15. List<String>? prevReferralCode,
  16. UserModel? user,
  17. UserConfig? userConfig,
  18. int? totalAdultPassengerLimit,
  19. int? totalUnusedAdultPassengerLimit,
  20. int? totalNeoMilesPaymentPercentage,
  21. int? totalNeoOneMonthlySubscription,
  22. int? adultPassengerLimit,
  23. int? maxExclusiveBookings,
  24. int? unusedExclusiveBookings,
})

Implementation

Data({
  this.uid,
  this.referralCode,
  this.isGlobalSalesPool,
  this.isFounder,
  this.isCorporate,
  this.wallet,
  this.hasConfirmedBooking,
  this.founderShares,
  this.parentId,
  this.createdAt,
  this.updatedAt,
  this.loggedInLocation,
  this.currentSubscription,
  this.addons,
  this.prevReferralCode,
  this.user,
  this.userConfig,
  this.totalAdultPassengerLimit,
  this.totalUnusedAdultPassengerLimit,
  this.totalNeoMilesPaymentPercentage,
  this.totalNeoOneMonthlySubscription,
  this.adultPassengerLimit,
  this.maxExclusiveBookings,
  this.unusedExclusiveBookings
});