CompanyProfile constructor

CompanyProfile({
  1. required String? currency,
  2. required String? zip,
  3. required DateTime ipo,
  4. required String sector,
  5. required String industry,
  6. required int? employeeTotal,
  7. required double marketCapitalization,
  8. required String? country,
  9. required double beta,
  10. required double changes,
  11. required String? state,
  12. required String? city,
  13. required double? volAvg,
  14. required String? exchangeShortName,
  15. required String? cusip,
  16. required bool? isFund,
  17. required bool? defaultImage,
  18. required bool? isEtf,
  19. required String? phone,
  20. required String? website,
  21. required bool? isActivelyTrading,
  22. required String? symbol,
  23. required String? companyName,
  24. required double? dcf,
  25. required double? lastDiv,
  26. required String? isin,
  27. required String? range,
  28. required bool? isAdr,
  29. required double? dcfDiff,
  30. required String? exchange,
  31. required String? description,
  32. required double? price,
})

Implementation

CompanyProfile({
  required this.currency,
  required this.zip,
  required this.ipo,
  required this.sector,
  required this.industry,
  required this.employeeTotal,
  required this.marketCapitalization,
  required this.country,
  required this.beta,
  required this.changes,
  required this.state,
  required this.city,
  required this.volAvg,
  required this.exchangeShortName,
  required this.cusip,
  required this.isFund,
  required this.defaultImage,
  required this.isEtf,
  required this.phone,
  required this.website,
  required this.isActivelyTrading,
  required this.symbol,
  required this.companyName,
  required this.dcf,
  required this.lastDiv,
  required this.isin,
  required this.range,
  required this.isAdr,
  required this.dcfDiff,
  required this.exchange,
  required this.description,
  required this.price,
});