DottedLine constructor

const DottedLine({
  1. Key? key,
  2. double height = 1,
  3. Color color = Colors.black,
  4. Axis direction = Axis.horizontal,
})

Implementation

const DottedLine({
  super.key,
  this.height = 1,
  this.color = Colors.black,
  this.direction = Axis.horizontal,
});