lineCap function
Set the line cap style: 'butt', 'round', or 'square'.
Implementation
void lineCap(dynamic context2D, String lineCap) {
if (context2D is web.CanvasRenderingContext2D) {
context2D.lineCap = lineCap;
}
}
Set the line cap style: 'butt', 'round', or 'square'.
void lineCap(dynamic context2D, String lineCap) {
if (context2D is web.CanvasRenderingContext2D) {
context2D.lineCap = lineCap;
}
}