AbsorbPointer constructor
Creates a widget that absorbs pointers during hit testing.
The absorbing
argument must not be null
Implementation
const AbsorbPointer({
Key key,
this.absorbing = true,
Widget child,
this.ignoringSemantics,
}) : assert(absorbing != null),
super(key: key, child: child);