enableInteractiveSelection property
If false, describeSemanticsConfiguration will not set the configuration's cursor motion or set selection callbacks.
True by default.
Implementation
bool get enableInteractiveSelection => _enableInteractiveSelection;
Implementation
set enableInteractiveSelection(bool value) {
if (_enableInteractiveSelection == value)
return;
_enableInteractiveSelection = value;
markNeedsTextLayout();
markNeedsSemanticsUpdate();
}