LineStyle constructor

LineStyle({
  1. Color lineColor = Colors.amber,
  2. double lineStokeWidth = 4,
})

Implementation

LineStyle({
  this.lineColor = Colors.amber,
  this.lineStokeWidth = 4,
});