ignoring property

bool get ignoring

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;
set ignoring (bool value)

Implementation

set ignoring(bool value) {
  if (value == _ignoring) return;
  _ignoring = value;
  markNeedsLayout();
}