currentX property

set currentX (dynamic x)

Implementation

set currentX(x) {
  _lines[_selectPathIndex].line[_selectDot] = Offset(
    x,
    _lines[_selectPathIndex].line[_selectDot].dy,
  );
  notifyListeners();
}