SliverIgnorePointer constructor
- Key? key,
- bool ignoring = true,
- @Deprecated('Create a custom sliver ignore pointer widget instead. ' 'This feature was deprecated after v3.8.0-12.0.pre.') bool? ignoringSemantics,
- 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);