removeAt method
Removes the point at the given index.
Implementation
void removeAt(int index) {
_path.removeAt(index);
assert(_path.isNotEmpty);
_closed = null;
_boundingBox = null;
}
Removes the point at the given index.
void removeAt(int index) {
_path.removeAt(index);
assert(_path.isNotEmpty);
_closed = null;
_boundingBox = null;
}