displayMode property

DisplayMode? get displayMode

If set, updates the display mode to the mode matching this value. If other parameters are invalid, this will not be applied. If the display mode is invalid, it will not be applied and an error will be set, but other properties will still be applied.

Implementation

DisplayMode? get displayMode => _wrapped.displayMode?.let(DisplayMode.fromJS);
set displayMode (DisplayMode? v)

Implementation

set displayMode(DisplayMode? v) {
  _wrapped.displayMode = v?.toJS;
}