toJson method
Implementation
Map<String, dynamic> toJson() => {
if (operatingCashFlow != null) 'operatingCashFlow': operatingCashFlow,
if (investingCashFlow != null) 'investingCashFlow': investingCashFlow,
if (financingCashFlow != null) 'financingCashFlow': financingCashFlow,
if (capitalExpenditures != null)
'capitalExpenditures': capitalExpenditures,
if (depreciationAmortization != null)
'depreciationAmortization': depreciationAmortization,
if (dividendsPaid != null) 'dividendsPaid': dividendsPaid,
if (freeCashFlow != null) 'freeCashFlow': freeCashFlow,
if (netCashChange != null) 'netCashChange': netCashChange,
if (capexToOperatingCashFlow != null)
'capexToOperatingCashFlow': capexToOperatingCashFlow,
if (fcfConversionRate != null) 'fcfConversionRate': fcfConversionRate,
};