BlockSemanticsModifier constructor

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

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

Implementation

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