height property
int?
get
height
The height to resize the window to in pixels. This value is ignored for panels.
Implementation
int? get height => _wrapped.height;
set
height
(int? v)
Implementation
set height(int? v) {
_wrapped.height = v;
}