DashedLine constructor

const DashedLine({
  1. Key? key,
  2. double? width,
  3. double? gap,
  4. double? thickness,
  5. Color? color,
})

Implementation

const DashedLine({
  super.key,
  this.width,
  this.gap,
  this.thickness,
  this.color,
});