selected property
bool?
get
selected
Whether the tab should become the selected tab in the window. Defaults to
true
Implementation
bool? get selected => _wrapped.selected;
set
selected
(bool? v)
Implementation
set selected(bool? v) {
_wrapped.selected = v;
}