CryptoQuote constructor

CryptoQuote(
  1. String symbol,
  2. String sector,
  3. String calculationPrice,
  4. String high,
  5. String low,
  6. String latestPrice,
  7. String latestSource,
  8. DateTime latestUpdate,
  9. String latestVolume,
  10. String previousClose,
  11. String bidPrice,
  12. String bidSize,
  13. String askPrice,
  14. String askSize,
)

Default Constructor

Implementation

CryptoQuote(
  this.symbol,
  this.sector,
  this.calculationPrice,
  this.high,
  this.low,
  this.latestPrice,
  this.latestSource,
  this.latestUpdate,
  this.latestVolume,
  this.previousClose,
  this.bidPrice,
  this.bidSize,
  this.askPrice,
  this.askSize,
);