switchTo method
Implementation
void switchTo(int targetIndex) {
currentIndex.value = targetIndex;
for (var value in _panelScrollControllers) {
value.toIndex(targetIndex, config: _scrollConfig.copyWith(jump: true));
}
_switchToTab(targetIndex);
}