SignaturePaintParams constructor

const SignaturePaintParams({
  1. Color color = Colors.black,
  2. double strokeWidth = 1.0,
  3. double maxStrokeWidth = 10.0,
})

Paint settings of line. color - color of line. strokeWidth - minimal width of line. maxStrokeWidth - maximal width of line.

Implementation

const SignaturePaintParams({
  this.color = Colors.black,
  this.strokeWidth = 1.0,
  this.maxStrokeWidth = 10.0,
});