CandlestickShape constructor

CandlestickShape({
  1. bool hollow = true,
  2. double strokeWidth = 1,
})

Creates a candle stick shape.

Implementation

CandlestickShape({
  this.hollow = true,
  this.strokeWidth = 1,
});