height property

int? get height

The height in pixels of the new window, including the frame. If not specified, defaults to a natural height.

Implementation

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

Implementation

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