LineStyle constructor

const LineStyle({
  1. Color color = Colors.grey,
  2. List<int>? dashPattern,
  3. int? thickness,
})

Implementation

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