moveToMappoint method
void
moveToMappoint(
- MappointRelative point
Starts a new sub-path at the given MappointRelative.
Implementation
void moveToMappoint(MappointRelative point) {
_path.moveTo(point.dx, point.dy);
_points.add(Pointinfo(true, point.dx, point.dy));
_dashedPaths.clear();
}