DottedLine constructor

const DottedLine({
  1. Key? key,
  2. required Color color,
  3. double height = 2,
  4. double dashWidth = 4,
  5. double dashSpacing = 4,
})

Implementation

const DottedLine({
  super.key,
  required this.color,
  this.height = 2,
  this.dashWidth = 4,
  this.dashSpacing = 4,
});