XSingleDashedLine constructor

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

Creates a horizontal single dashed divider.

Implementation

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