switchTo method

void switchTo(
  1. int targetIndex
)

Implementation

void switchTo(int targetIndex) {
  currentIndex.value = targetIndex;

  for (var value in _panelScrollControllers) {
    value.toIndex(targetIndex, config: _scrollConfig.copyWith(jump: true));
  }
  _switchToTab(targetIndex);
}