XSingleDashedLine constructor

const XSingleDashedLine({
  1. Key? key,
  2. double dashWidth = 6,
  3. double dashGap = 4,
  4. double strokeWidth = 1,
  5. Color? color,
})

Creates a horizontal single dashed divider.

Implementation

const XSingleDashedLine({
  super.key,
  this.dashWidth = 6,
  this.dashGap = 4,
  this.strokeWidth = 1,
  this.color,
});