stroke function

void stroke(
  1. dynamic context2D
)

Stroke the current path.

Implementation

void stroke(dynamic context2D) {
  if (context2D is web.CanvasRenderingContext2D) {
    context2D.stroke();
  }
}