stroke function
void
stroke(
- dynamic context2D
Stroke the current path.
Implementation
void stroke(dynamic context2D) {
if (context2D is web.CanvasRenderingContext2D) {
context2D.stroke();
}
}