SliverIgnorePointer constructor

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

Creates a sliver widget that is invisible to hit testing.

Implementation

const SliverIgnorePointer({
  super.key,
  this.ignoring = true,
  @Deprecated(
    'Create a custom sliver ignore pointer widget instead. '
    'This feature was deprecated after v3.8.0-12.0.pre.'
  )
  this.ignoringSemantics,
  Widget? sliver,
}) : super(child: sliver);