LineStyle constructor

const LineStyle({
  1. Color color = Colors.grey,
  2. double thickness = 4,
})

Implementation

const LineStyle({
  this.color = Colors.grey,
  this.thickness = 4,
});