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