XDoubleDashedLine constructor

const XDoubleDashedLine({
  1. Key? key,
  2. double? dashWidth,
  3. double? dashGap,
  4. double? strokeWidth,
  5. Color? color,
  6. double spacing = 3,
  7. XLook look = XLook.standard,
})

Creates a horizontal double-dashed divider.

Implementation

const XDoubleDashedLine({
  super.key,
  this.dashWidth,
  this.dashGap,
  this.strokeWidth,
  this.color,
  this.spacing = 3,
  this.look = XLook.standard,
});