IncomeStatement constructor

const IncomeStatement({
  1. double? revenue,
  2. double? grossProfit,
  3. double? operatingIncome,
  4. double? netIncome,
  5. double? earningsPerShareBasic,
  6. double? earningsPerShareDiluted,
  7. double? researchAndDevelopment,
  8. double? costOfRevenue,
})

Implementation

const IncomeStatement({
  this.revenue,
  this.grossProfit,
  this.operatingIncome,
  this.netIncome,
  this.earningsPerShareBasic,
  this.earningsPerShareDiluted,
  this.researchAndDevelopment,
  this.costOfRevenue,
});