index property

int? get index

The position of the tabs within their windows.

Implementation

int? get index => _wrapped.index;
set index (int? v)

Implementation

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