IgnorePointer constructor

const IgnorePointer(
  1. {Key? key,
  2. bool ignoring = true,
  3. @Deprecated('Use ExcludeSemantics or create a custom ignore pointer widget instead. ' 'This feature was deprecated after v3.8.0-12.0.pre.') bool? ignoringSemantics,
  4. Widget? child}
)

Creates a widget that is invisible to hit testing.

Implementation

const IgnorePointer({
  super.key,
  this.ignoring = true,
  @Deprecated(
    'Use ExcludeSemantics or create a custom ignore pointer widget instead. '
    'This feature was deprecated after v3.8.0-12.0.pre.'
  )
  this.ignoringSemantics,
  super.child,
});