setDragStartSlop method
Implementation
void setDragStartSlop(double? value) {
final resolved = value == null
? null
: _requireFinitePositive(value, name: 'dragStartSlop');
if (_dragStartSlop == resolved) return;
_dragStartSlop = resolved;
notifyListeners();
}