DrawingStyle constructor

const DrawingStyle({
  1. required Color color,
  2. bool thin = false,
  3. bool dashed = false,
})

Implementation

const DrawingStyle({
  required this.color,
  this.thin = false,
  this.dashed = false,
});