DrawingPoint constructor

DrawingPoint({
  1. Offset? offset,
  2. Color color = Colors.black,
  3. double strokeWidth = 3.0,
})

Implementation

DrawingPoint({
  this.offset,
  this.color = Colors.black,
  this.strokeWidth = 3.0,
});