semanticBounds property

  1. @override
Rect get semanticBounds
override

The bounding box, in the local coordinate system, of this object, for accessibility purposes.

Implementation

@override
ui.Rect get semanticBounds {
  final ui.Rect? rect = _ifcSemanticBounds;
  if (rect != null) {
    return rect;
  }
  return super.semanticBounds;
}