BlockSemantics constructor

const BlockSemantics(
  1. {Key? key,
  2. bool blocking = true,
  3. Widget? child}
)

Creates a widget that excludes the semantics of all widgets painted before it in the same semantic container.

Implementation

const BlockSemantics({ super.key, this.blocking = true, super.child });