LineStyleSpec constructor

const LineStyleSpec({
  1. String type = 'solid',
  2. double width = 2.0,
  3. List<double> dash = const [8, 4],
})

Implementation

const LineStyleSpec({
  this.type = 'solid',
  this.width = 2.0,
  this.dash = const [8, 4],
});