index property
int?
get
index
The position the tab should take in the window. The provided value is clamped to between zero and the number of tabs in the window.
Implementation
int? get index => _wrapped.index;
set
index
(int? v)
Implementation
set index(int? v) {
_wrapped.index = v;
}