PathSignaturePainter constructor
const
PathSignaturePainter({
- required List<
CubicPath> paths, - required HandSignatureDrawer drawer,
- bool onSize(
- Size size
Creates a PathSignaturePainter.
paths
The list of signature paths to draw.
drawer
The drawer that will perform the actual painting.
onSize
An optional callback for canvas size changes.
Implementation
const PathSignaturePainter({
required this.paths,
required this.drawer,
this.onSize,
});