CashFlowStatement constructor

const CashFlowStatement({
  1. double? operatingCashFlow,
  2. double? investingCashFlow,
  3. double? financingCashFlow,
  4. double? capitalExpenditures,
  5. double? depreciationAmortization,
  6. double? dividendsPaid,
})

Implementation

const CashFlowStatement({
  this.operatingCashFlow,
  this.investingCashFlow,
  this.financingCashFlow,
  this.capitalExpenditures,
  this.depreciationAmortization,
  this.dividendsPaid,
});