lineTo method
dynamic
lineTo(
- dynamic x,
- dynamic y
Implementation
lineTo(x, y) {
this.commands.add({
"type": 'L',
"x": x,
"y": y
});
}
lineTo(x, y) {
this.commands.add({
"type": 'L',
"x": x,
"y": y
});
}