TLTabBarView constructor

const TLTabBarView({
  1. Key? key,
  2. required TabController tabController,
  3. required List tabDatas,
  4. required List<Widget> children(),
})

Implementation

const TLTabBarView({
  Key? key,
  required this.tabController,
  required this.tabDatas,
  required this.children,
}) : super(key: key);