Quote constructor

Quote({
  1. required double c,
  2. required double d,
  3. required double? dp,
  4. required double h,
  5. required double l,
  6. required double o,
  7. required double pc,
  8. required int t,
  9. double? v,
  10. HistoricalPrice? historicalPrice,
  11. Metrics? metrics,
  12. String? exchange,
  13. String? earningsAnnouncement,
})

Implementation

Quote({
  required this.c,
  required this.d,
  required this.dp,
  required this.h,
  required this.l,
  required this.o,
  required this.pc,
  required this.t,
  this.v,
  this.historicalPrice,
  this.metrics,
  this.exchange,
  this.earningsAnnouncement,
});