ignoring property
Whether this render object reports no baseline.
Regardless of whether this render object is ignored during baseline reporting, it will still consume space during layout and be visible during painting.
Implementation
bool get ignoring => _ignoring;
Implementation
set ignoring(bool value) {
if (value == _ignoring) return;
_ignoring = value;
markNeedsLayout();
}