netCashChange property
double?
get
netCashChange
Net change in cash (sum of all cash flows).
Implementation
double? get netCashChange {
if (operatingCashFlow == null &&
investingCashFlow == null &&
financingCashFlow == null) {
return null;
}
return (operatingCashFlow ?? 0) +
(investingCashFlow ?? 0) +
(financingCashFlow ?? 0);
}