blocking property
Whether this render object is blocking semantics of previously painted RenderObjects below a common semantics boundary from the semantic tree.
Implementation
bool get blocking => _blocking;
Implementation
set blocking(bool value) {
if (value == _blocking) {
return;
}
_blocking = value;
markNeedsSemanticsUpdate();
}