jumpToTab method

void jumpToTab(
  1. int value
)

Implementation

void jumpToTab(final int value) {
  assert(value >= 0, "Value cannot be less than zero");
  if (_index == value) {
    return;
  }
  _index = value;
  notifyListeners();
}