RenderBlockSemantics constructor

RenderBlockSemantics(
  1. {RenderBox? child,
  2. bool blocking = true}
)

Create a render object that blocks semantics for nodes below it in paint order.

Implementation

RenderBlockSemantics({
  RenderBox? child,
  bool blocking = true,
}) : _blocking = blocking,
     super(child);