BalanceData constructor

BalanceData({
  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? cashAndCashEquivalents,
  10. double? shortTermInvestments,
  11. double? inventory,
  12. double? otherCurrentAssets,
  13. double? goodwill,
  14. double? intangibleAssets,
  15. double? goodwillAndIntangibleAssets,
  16. double? longTermInvestments,
  17. double? taxAssets,
  18. double? otherNonCurrentAssets,
  19. double? totalNonCurrentAssets,
  20. double? otherAssets,
  21. double? totalAssets,
  22. double? shortTermDebt,
  23. double? taxPayables,
  24. double? deferredRevenue,
  25. double? otherCurrentLiabilities,
  26. double? longTermDebt,
  27. double? deferredRevenueNonCurrent,
  28. double? deferredTaxLiabilitiesNonCurrent,
  29. double? otherNonCurrentLiabilities,
  30. double? totalNonCurrentLiabilities,
  31. double? otherLiabilities,
  32. double? capitalLeaseObligations,
  33. double? totalLiabilities,
  34. double? preferredStock,
  35. double? commonStock,
  36. double? retainedEarnings,
  37. double? othertotalStockholdersEquity,
  38. double? totalStockholdersEquity,
  39. double? minorityInterest,
  40. double? totalEquity,
  41. double? totalLiabilitiesAndTotalEquity,
  42. double? totalInvestments,
  43. double? totalDebt,
  44. double? netDebt,
  45. String? link,
  46. String? finalLink,
  47. double? accountsPayable,
  48. double? cashShortTermInvestments,
  49. double? currentAssets,
  50. double? currentLiabilities,
  51. double? liabilitiesShareholdersEquity,
  52. double? otherEquity,
  53. double? propertyPlantEquipment,
  54. double? totalReceivables,
})

Implementation

BalanceData(
    {this.date,
    this.symbol,
    this.reportedCurrency,
    this.cik,
    this.fillingDate,
    this.acceptedDate,
    this.year,
    this.period,
    this.cashAndCashEquivalents,
    this.shortTermInvestments,
    this.inventory,
    this.otherCurrentAssets,
    this.goodwill,
    this.intangibleAssets,
    this.goodwillAndIntangibleAssets,
    this.longTermInvestments,
    this.taxAssets,
    this.otherNonCurrentAssets,
    this.totalNonCurrentAssets,
    this.otherAssets,
    this.totalAssets,
    this.shortTermDebt,
    this.taxPayables,
    this.deferredRevenue,
    this.otherCurrentLiabilities,
    this.longTermDebt,
    this.deferredRevenueNonCurrent,
    this.deferredTaxLiabilitiesNonCurrent,
    this.otherNonCurrentLiabilities,
    this.totalNonCurrentLiabilities,
    this.otherLiabilities,
    this.capitalLeaseObligations,
    this.totalLiabilities,
    this.preferredStock,
    this.commonStock,
    this.retainedEarnings,
    this.othertotalStockholdersEquity,
    this.totalStockholdersEquity,
    this.minorityInterest,
    this.totalEquity,
    this.totalLiabilitiesAndTotalEquity,
    this.totalInvestments,
    this.totalDebt,
    this.netDebt,
    this.link,
    this.finalLink,
    this.accountsPayable,
    this.cashShortTermInvestments,
    this.currentAssets,
    this.currentLiabilities,
    this.liabilitiesShareholdersEquity,
    this.otherEquity,
    this.propertyPlantEquipment,
    this.totalReceivables});