paint method
Paints the given paths
onto the canvas
.
canvas
The canvas to draw on.
size
The size of the canvas.
paths
A list of CubicPath objects representing the signature to be drawn.
Implementation
@override
void paint(Canvas canvas, Size size, List<CubicPath> paths) {
for (final drawer in drawers) {
drawer.paint(canvas, size, paths);
}
}