CandlestickChartDashedLineStyle constructor

const CandlestickChartDashedLineStyle({
  1. required double width,
  2. required Color color,
  3. double dashWidth = 4,
  4. double dashSpace = 4,
})

Implementation

const CandlestickChartDashedLineStyle(
    {required double width, required Color color, this.dashWidth = 4, this.dashSpace = 4})
    : super(width: width, color: color);