baseRect method

Rect baseRect(
  1. double aspectRatio
)

Implementation

Rect baseRect(double aspectRatio) {
  return Rect.fromCenter(
    center: center,
    width: baseWidth(aspectRatio),
    height: baseHeight(aspectRatio),
  );
}