shortestSide property Null safety
The lesser of the magnitudes of the width and the height of this rectangle.
Implementation
double get shortestSide => math.min(width.abs(), height.abs());
The lesser of the magnitudes of the width and the height of this rectangle.
double get shortestSide => math.min(width.abs(), height.abs());