updateDragPosition method
Updates the drag position
Implementation
void updateDragPosition(Offset position) {
if (_isDragging) {
_currentPosition = position;
notifyListeners();
}
}
Updates the drag position
void updateDragPosition(Offset position) {
if (_isDragging) {
_currentPosition = position;
notifyListeners();
}
}