index property

int? 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;
void index=(int? v)

Implementation

set index(int? v) {
  _wrapped.index = v;
}