excludeFromSemanticsScrolling property

  1. @protected
bool excludeFromSemanticsScrolling

Implementation

@protected
bool get excludeFromSemanticsScrolling => _excludeFromSemanticsScrolling;
void excludeFromSemanticsScrolling=(bool value)

Implementation

set excludeFromSemanticsScrolling(bool value) {
  if (_excludeFromSemanticsScrolling == value) {
    return;
  }
  _excludeFromSemanticsScrolling = value;
  markNeedsSemanticsUpdate();
}