IgnorePointerModifier constructor

const IgnorePointerModifier({
  1. Key? key,
  2. Widget? child,
  3. Key? modifierKey,
  4. bool ignoring = true,
  5. bool? ignoringSemantics,
})

Creates a widget that is invisible to hit testing.

The ignoring argument must not be null. If ignoringSemantics is null, this render object will be ignored for semantics if ignoring is true.

Implementation

const IgnorePointerModifier({
  super.key,
  super.child,
  super.modifierKey,
  this.ignoring = true,
  this.ignoringSemantics,
});