Stats constructor

Stats({
  1. double? open,
  2. double? high,
  3. double? low,
  4. double? volume,
  5. double? volume30Day,
  6. double? last,
})

Implementation

Stats({
  this.open,
  this.high,
  this.low,
  this.volume,
  this.volume30Day,
  this.last,
});