workArea property

Bounds get workArea

The usable work area of the display within the display bounds. The work area excludes areas of the display reserved for OS, for example taskbar and launcher.

Implementation

Bounds get workArea => Bounds.fromJS(_wrapped.workArea);
set workArea (Bounds v)

Implementation

set workArea(Bounds v) {
  _wrapped.workArea = v.toJS;
}