AbsorbPointerModifier constructor

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

Creates a widget that absorbs pointers during hit testing.

The absorbing argument must not be null.

Implementation

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