DottedLine constructor

const DottedLine({
  1. Key? key,
  2. double dashHeight = 1,
  3. Color color = Colors.grey,
  4. double dashWidth = 5,
  5. double dashRadius = 0,
  6. double space = 2.5,
})

Implementation

const DottedLine({
  final Key? key,
  this.dashHeight = 1,
  this.color = Colors.grey,
  this.dashWidth = 5,
  this.dashRadius = 0,
  this.space = 2.5,
}) : super(key: key);