tabController property

TabController tabController

Get the associated TabController

Implementation

TabController get tabController {
  _OnTabPageViewBuilderState._addToTabObs?.call(this);
  assert(
      _tabController != null,
      'TabController is not initialized yet. '
      'You have to wrap the TabBarView or TabBar widget with the OnTabBuilder widget');
  return _tabController!;
}