autoDiscardable property

bool? get autoDiscardable

The tab's new auto-discardable state.

Implementation

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

Implementation

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