BasicLineDash constructor

const BasicLineDash({
  1. Key? key,
  2. double height = BasicBorders.thin,
  3. Color? color,
  4. double dashWidth = 5,
})

Implementation

const BasicLineDash({
  Key? key,
  this.height = BasicBorders.thin,
  this.color,
  this.dashWidth = 5,
}) : super(key: key);