size property

int? size

Implementation

int? get size => (height == null || width == null)
    ? null
    : height! > width!
        ? height
        : width;