void stroke(
[Path2D path]
)

Not documented.

Source

void stroke([Path2D path]) {
  if (path == null) {
    _blink.BlinkCanvasRenderingContext2D.instance.stroke_Callback_0_(unwrap_jso(this));
    return;
  }
  if ((path is Path2D)) {
    _blink.BlinkCanvasRenderingContext2D.instance.stroke_Callback_1_(unwrap_jso(this), unwrap_jso(path));
    return;
  }
  throw new ArgumentError("Incorrect number or type of arguments");
}