lineToMappoint method
void
lineToMappoint(
- MappointRelative point
Adds a straight line segment from the current point to the given MappointRelative.
Implementation
void lineToMappoint(MappointRelative point) {
_path.lineTo(point.dx, point.dy);
_points.add(Pointinfo(false, point.dx, point.dy));
_dashedPaths.clear();
}