bounds property

FlatBounds? get bounds

Em-space bounds of the flattened outline (memoized), or null when the outline is empty.

Implementation

FlatBounds? get bounds {
  if (!_boundsDone) {
    _bounds = FlatBounds.of(subpaths);
    _boundsDone = true;
  }
  return _bounds;
}