isDragging property
bool
get
isDragging
Gets the current dragging state.
Implementation
bool get isDragging => dragging.value;
set
isDragging
(bool value)
Sets the dragging state in a MobX action.
Implementation
set isDragging(bool value) => runInAction(() => dragging.value = value);