AceEntity constructor

AceEntity({
  1. int index = 0,
  2. double open = 0,
  3. double high = 0,
  4. double low = 0,
  5. double close = 0,
  6. double volume = 0,
  7. int time = 0,
  8. double amount = 0,
  9. double flow = 0,
})

Implementation

AceEntity({
  this.index = 0,
  this.open = 0,
  this.high = 0,
  this.low = 0,
  this.close = 0,
  this.volume = 0,
  this.time = 0,
  this.amount = 0,
  this.flow = 0,
});