XDoubleDashedLine constructor

const XDoubleDashedLine({
  1. Key? key,
  2. double dashWidth = 6,
  3. double dashGap = 4,
  4. double strokeWidth = .8,
  5. Color color = Colors.black54,
  6. double spacing = 3,
})

Creates a horizontal double-dashed divider.

Implementation

const XDoubleDashedLine({
  super.key,
  this.dashWidth = 6,
  this.dashGap = 4,
  this.strokeWidth = .8,
  this.color = Colors.black54,
  this.spacing = 3,
});