ExcludeSemanticsModifier constructor

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

Creates a widget that drops all the semantics of its descendants.

Implementation

const ExcludeSemanticsModifier({
  super.key,
  super.modifierKey,
  this.excluding = true,
  super.child,
});