setDragStartSlop method

void setDragStartSlop(
  1. double? value
)

Implementation

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