getDailyBookedBookingValue method
String
getDailyBookedBookingValue()
Implementation
String getDailyBookedBookingValue() {
String bookingType = controller.getBookedBookingType();
return bookingType == 'all'
? '${(controller.bookingStats.value?.booked?.daily?.all ?? 0).round()}'
: bookingType == 'eco'
? '${(controller.bookingStats.value?.booked?.daily?.economyPremium ?? 0).round()}'
: bookingType == 'business'
? '${(controller.bookingStats.value?.booked?.daily?.firstBusiness ?? 0).round()}'
: '0';
}