tripNonStopCount property

int tripNonStopCount

Implementation

int get tripNonStopCount =>
    ((showExclusiveFlights.value && showStandardPrice.value) ||
            (!showExclusiveFlights.value && !showStandardPrice.value))
        ? (exclusiveNonStopCount.value + standardNonStopCount.value)
        : (showExclusiveFlights.value ? 0 : standardNonStopCount.value) +
            (showStandardPrice.value ? 0 : exclusiveNonStopCount.value);