DottedLine constructor

const DottedLine({
  1. Key? key,
  2. Color color = const Color(0xFFE7E7E7),
  3. Axis direction = Axis.horizontal,
  4. double dashHeight = 1,
  5. double dashWidth = 6,
})

Implementation

const DottedLine({
  Key? key,
  this.color = const Color(0xFFE7E7E7),
  this.direction = Axis.horizontal,
  this.dashHeight = 1,
  this.dashWidth = 6,
}) : super(key: key);