width property

int? get width

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

Implementation

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

Implementation

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