size property

Size? get size

Returns the Size of these WindowPreferences.

Implementation

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