DrawableSignaturePainter constructor

DrawableSignaturePainter({
  1. required dynamic drawable,
  2. Color? color,
  3. double strokeWidth(
    1. double width
    )?,
})

Drawable painter.

Implementation

DrawableSignaturePainter({
  required this.drawable,
  this.color,
  this.strokeWidth,
});