DepthChart constructor

DepthChart(
  1. List<DepthEntity> bids,
  2. List<DepthEntity> asks,
  3. ChartColors chartColors, {
  4. int fixedLength = 2,
  5. Color? buyPathColor,
  6. Color? sellPathColor,
})

Implementation

DepthChart(
  this.bids,
  this.asks,
  this.chartColors, {
  this.fixedLength = 2,
  this.buyPathColor,
  this.sellPathColor,
});