DepthChart constructor
DepthChart({
- required List<
DepthEntity> bids, - required List<
DepthEntity> asks, - required DepthColors colors,
- int fixedLength = 2,
- Color? buyPathColor,
- Color? sellPathColor,
Implementation
DepthChart({
required this.bids,
required this.asks,
required this.colors,
this.fixedLength = 2,
this.buyPathColor,
this.sellPathColor,
});