aspectRatio property

double get aspectRatio

Calculated aspect ratio (width / height) or 9 / 16 if uninitialized.

Implementation

double get aspectRatio => size.width == 0 || size.height == 0 ? 9 / 16 : size.width / size.height;