tripOneStopCount property
Implementation
int get tripOneStopCount =>
(((showExclusiveFlights.value && showStandardPrice.value)) ||
(!showExclusiveFlights.value && !showStandardPrice.value))
? ( exclusiveOneStopCount.value + standardOneStopCount.value)
: (showExclusiveFlights.value ? 0 : standardOneStopCount.value) +
(showStandardPrice.value ? 0 : exclusiveOneStopCount.value);