bool isSemanticBoundary

Whether this RenderObject introduces a new box for accessibility purposes.

Source

@override
bool get isSemanticBoundary {
  return onTap != null
      || onLongPress != null
      || onHorizontalDragUpdate != null
      || onVerticalDragUpdate != null;
}