BookingStats constructor

BookingStats({
  1. required int totalBookings,
  2. required double totalSavings,
  3. required double bookingsPercentageChange,
  4. required double savingsPercentageChange,
  5. required NeoMiles neoMiles,
})

Implementation

BookingStats({
  required this.totalBookings,
  required this.totalSavings,
  required this.bookingsPercentageChange,
  required this.savingsPercentageChange,
  required this.neoMiles,
});