applyTransform method

Rect applyTransform(
  1. ZoomTransform transform
)

Applies a zoom transform to this rect.

Implementation

Rect applyTransform(ZoomTransform transform) {
  return transform.applyToRect(this);
}