discarded property

bool? get discarded

Whether the tabs are discarded. A discarded tab is one whose content has been unloaded from memory, but is still visible in the tab strip. Its content is reloaded the next time it is activated.

Implementation

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

Implementation

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