DashedLine constructor

const DashedLine({
  1. double height = 3,
  2. Color color = Colors.black,
  3. double heightContainer = 70,
})

Implementation

const DashedLine({
  this.height = 3,
  this.color = Colors.black,
  this.heightContainer = 70,
});