consumeOutsideTaps property
Whether or not the tap down even that triggers a call to onTapOutside will continue on to participate in the gesture arena.
If any RenderTapRegion in the same group has consumeOutsideTaps set to true, then the tap down event will be consumed before other gesture recognizers can process them.
Implementation
bool get consumeOutsideTaps => _consumeOutsideTaps;
Implementation
set consumeOutsideTaps(bool value) {
if (_consumeOutsideTaps != value) {
_consumeOutsideTaps = value;
markNeedsLayout();
}
}