Financials constructor

Financials({
  1. Balance? balance,
  2. Cashflow? cashflow,
  3. Income? income,
})

The Financials constructor.

The parameter balance is the Balance class. The parameter cashflow is the Cashflow class. The parameter income is the Income class.

Implementation

Financials({this.balance, this.cashflow, this.income});