isPrimary property

bool? get isPrimary

If set to true, makes the display primary. No-op if set to false. Note: If set, the display is considered primary for all other properties (i.e. isUnified may be set and bounds origin may not).

Implementation

bool? get isPrimary => _wrapped.isPrimary;
set isPrimary (bool? v)

Implementation

set isPrimary(bool? v) {
  _wrapped.isPrimary = v;
}