overscan property
Insets?
get
overscan
If set, sets the display's overscan insets to the provided values. Note that overscan values may not be negative or larger than a half of the screen's size. Overscan cannot be changed on the internal monitor.
Implementation
Insets? get overscan => _wrapped.overscan?.let(Insets.fromJS);
set
overscan
(Insets? v)
Implementation
set overscan(Insets? v) {
_wrapped.overscan = v?.toJS;
}