bounds property

Rect get bounds

Gets the bounding rectangle for the group in graph coordinates.

Implementation

Rect get bounds => Rect.fromLTWH(
  visualPosition.value.dx,
  visualPosition.value.dy,
  size.value.width,
  size.value.height,
);