DottedLine constructor

const DottedLine({
  1. double width = 0,
  2. double height = 0,
  3. double dashWidth = 0,
  4. double dashHeight = 0,
  5. Color color = Colors.grey,
  6. Axis direction = Axis.horizontal,
  7. int dashCount = 0,
})

Implementation

const DottedLine({
  this.width = 0,
  this.height = 0,
  this.dashWidth = 0,
  this.dashHeight = 0,
  this.color = Colors.grey,
  this.direction = Axis.horizontal,
  this.dashCount = 0,
});