beginPath function
void
beginPath(
- dynamic context2D
Begin a new path.
Implementation
void beginPath(dynamic context2D) {
if (context2D is web.CanvasRenderingContext2D) {
context2D.beginPath();
}
}