height property

int? get height

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

Implementation

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

Implementation

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