processTabSelected method

void processTabSelected(
  1. int index
)

Implementation

void processTabSelected(int index) {
  if (onTabSelected?.call(index) ?? false) {
    return;
  }
  controller.animateTo(index);
}