DashedLine constructor

const DashedLine({
  1. Key? key,
  2. required Color color,
  3. double strokeWidth = 2.0,
  4. double dashLength = 5.0,
  5. double dashGapLength = 3.0,
})

Implementation

const DashedLine({
  super.key,
  required this.color,
  this.strokeWidth = 2.0,
  this.dashLength = 5.0,
  this.dashGapLength = 3.0,
});