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