VxDash constructor

const VxDash({
  1. Key? key,
  2. Axis direction = Axis.horizontal,
  3. Color dashColor = Colors.black,
  4. double length = 200,
  5. double dashGap = 3,
  6. double dashLength = 6,
  7. double dashThickness = 1,
  8. double dashBorderRadius = 0,
})

Implementation

const VxDash(
    {super.key,
    this.direction = Axis.horizontal,
    this.dashColor = Colors.black,
    this.length = 200,
    this.dashGap = 3,
    this.dashLength = 6,
    this.dashThickness = 1,
    this.dashBorderRadius = 0});