selectTab method

void selectTab(
  1. T value
)

Selects a tab by its value.

This will notify all listeners and update any widgets using this controller.

Implementation

void selectTab(T value) {
  this.value = value;
}