setSelectedIndex static method

Future<void> setSelectedIndex(
  1. int index
)

Set the selected tab index

Implementation

static Future<void> setSelectedIndex(int index) async {
  if (!_isEnabled) return;
  await _channel.invokeMethod('setSelectedIndex', {'index': index});
}