removeCurrentDot method

void removeCurrentDot()

Implementation

void removeCurrentDot() {
  try {
    _lines[_selectPathIndex].line.removeAt(_selectDot);
    _selectDot = _lines[_selectPathIndex].line.length - 1;
  } catch (e) {}
  notifyListeners();
}