ZoScribblePainter constructor

ZoScribblePainter({
  1. required Animation<double> progress,
  2. Color color = Colors.amber,
  3. double blur = 5,
  4. double strokeWidth = 8,
  5. double borderRadius = 20.0,
})

Creates a ZoScribblePainter instance.

Implementation

ZoScribblePainter({
  required this.progress,
  this.color = Colors.amber,
  this.blur = 5,
  this.strokeWidth = 8,
  this.borderRadius = 20.0,
}) : super(repaint: progress);