width property

int? get width

The width of the window, including the frame, in pixels. In some circumstances a window may not be assigned a width property; for example, when querying closed windows from the sessions API.

Implementation

int? get width => _wrapped.width;
set width (int? v)

Implementation

set width(int? v) {
  _wrapped.width = v;
}