fcfConversionRate property

double? get fcfConversionRate

FCF conversion rate (FCF / Operating Cash Flow). Values closer to 1.0 indicate efficient capital allocation.

Implementation

double? get fcfConversionRate {
  if (freeCashFlow == null || operatingCashFlow == null) return null;
  if (operatingCashFlow == 0) return null;
  return freeCashFlow! / operatingCashFlow!;
}