RenderIgnoreBaseline constructor

RenderIgnoreBaseline({
  1. RenderBox? child,
  2. bool ignoring = true,
})

Creates a render object that does not report a baseline nor the baseline of its children.

The ignoring argument must not be null.

Implementation

RenderIgnoreBaseline({
  RenderBox? child,
  bool ignoring = true,
})  : _ignoring = ignoring,
      super(child);