index property

int index

The index of the currently selected tab.

Implementation

int get index => _index;
void index=(int value)

Implementation

set index(int value) {
  assert(value >= 0);
  if (_index != value) {
    _index = value;
    notifyListeners();
  }
}