XDottedLine constructor

XDottedLine({
  1. double height = 100.0,
  2. Color color = Colors.black,
  3. double dotSize = 4.0,
  4. double space = 4.0,
})

Implementation

XDottedLine({
  this.height = 100.0,
  this.color = Colors.black,
  this.dotSize = 4.0,
  this.space = 4.0,
});