TLTabBar constructor

const TLTabBar({
  1. Key? key,
  2. required TabController tabController,
  3. required List tabDatas,
  4. ValueChanged<int>? onTap,
})

Implementation

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