RenderIgnorePointer constructor

RenderIgnorePointer(
  1. {RenderBox? child,
  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}
)

Creates a render object that is invisible to hit testing.

Implementation

RenderIgnorePointer({
  RenderBox? child,
  bool ignoring = true,
  @Deprecated(
    'Use ExcludeSemantics or create a custom ignore pointer widget instead. '
    'This feature was deprecated after v3.8.0-12.0.pre.'
  )
  bool? ignoringSemantics,
}) : _ignoring = ignoring,
     _ignoringSemantics = ignoringSemantics,
     super(child);