IncomeData constructor

IncomeData({
  1. String? date,
  2. String? symbol,
  3. String? reportedCurrency,
  4. String? cik,
  5. String? fillingDate,
  6. String? acceptedDate,
  7. int? year,
  8. String? period,
  9. double? revenue,
  10. double? grossProfitRatio,
  11. double? generalAndAdministrativeExpenses,
  12. double? sellingAndMarketingExpenses,
  13. double? otherExpenses,
  14. double? costAndExpenses,
  15. double? interestIncome,
  16. double? interestExpense,
  17. double? depreciationAndAmortization,
  18. double? ebitda,
  19. double? ebitdaratio,
  20. double? operatingIncomeRatio,
  21. double? totalOtherIncomeExpensesNet,
  22. double? incomeBeforeTaxRatio,
  23. double? netIncome,
  24. double? netIncomeRatio,
  25. double? eps,
  26. double? weightedAverageShsOut,
  27. String? link,
  28. String? finalLink,
  29. double? costOfGoodsSold,
  30. double? dilutedAverageSharesOutstanding,
  31. double? dilutedEPS,
  32. double? ebit,
  33. double? grossIncome,
  34. double? pretaxIncome,
  35. double? provisionforIncomeTaxes,
  36. double? researchDevelopment,
  37. double? sgaExpense,
  38. double? totalOperatingExpense,
})

Implementation

IncomeData(
    {this.date,
    this.symbol,
    this.reportedCurrency,
    this.cik,
    this.fillingDate,
    this.acceptedDate,
    this.year,
    this.period,
    this.revenue,
    this.grossProfitRatio,
    this.generalAndAdministrativeExpenses,
    this.sellingAndMarketingExpenses,
    this.otherExpenses,
    this.costAndExpenses,
    this.interestIncome,
    this.interestExpense,
    this.depreciationAndAmortization,
    this.ebitda,
    this.ebitdaratio,
    this.operatingIncomeRatio,
    this.totalOtherIncomeExpensesNet,
    this.incomeBeforeTaxRatio,
    this.netIncome,
    this.netIncomeRatio,
    this.eps,
    this.weightedAverageShsOut,
    this.link,
    this.finalLink,
    this.costOfGoodsSold,
    this.dilutedAverageSharesOutstanding,
    this.dilutedEPS,
    this.ebit,
    this.grossIncome,
    this.pretaxIncome,
    this.provisionforIncomeTaxes,
    this.researchDevelopment,
    this.sgaExpense,
    this.totalOperatingExpense});