jumpToTab method

dynamic jumpToTab(
  1. int value
)

Implementation

jumpToTab(int value) {
  assert(value >= 0);
  if (_index == value) {
    return;
  }
  _index = value;
  notifyListeners();
}