DashedLinePainter constructor

const DashedLinePainter({
  1. required Axis axis,
  2. required double dashHeight,
  3. required double dashWidth,
  4. required double dashSpace,
  5. required double strokeWidth,
  6. required Color dashColor,
})

Implementation

const DashedLinePainter({
  required this.axis,
  required this.dashHeight,
  required this.dashWidth,
  required this.dashSpace,
  required this.strokeWidth,
  required this.dashColor,
});