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