XDashLine constructor

const XDashLine({
  1. Key? key,
  2. Color color = Colors.black,
  3. double dashHeight = 2,
  4. double dashWidth = 2,
  5. Axis direction = Axis.horizontal,
  6. double? length,
})

Implementation

const XDashLine({
  Key? key,
  this.color = Colors.black,
  this.dashHeight = 2,
  this.dashWidth = 2,
  this.direction = Axis.horizontal,
  this.length,
}) : super(key: key);