AbsorbPointer({Key key, bool absorbing: true, Widget child })

Creates a widget that absorbs pointers during hit testing.

The absorbing argument must not be null

Source

AbsorbPointer({
  Key key,
  this.absorbing: true,
  Widget child
}) : super(key: key, child: child) {
  assert(absorbing != null);
}