RenderIgnoreBaseline constructor

RenderIgnoreBaseline({
  1. RenderBox? child,
})

Create a render object that causes the parent to ignore the child for baseline computations.

Implementation

RenderIgnoreBaseline({
  RenderBox? child,
}) : super(child);