Brush constructor

Brush(
  1. List<Offset?> points, {
  2. Color brushColor = Colors.black,
  3. double brushWidth = 8.0,
})

Implementation

Brush(
  this.points, {
  this.brushColor = Colors.black,
  this.brushWidth = 8.0,
});