AdeptTabBarAppBar<T> constructor

AdeptTabBarAppBar<T>({
  1. required String title,
  2. required List<T> list,
  3. required String getText(
    1. T
    ),
  4. bool isScrollable = false,
  5. TabController? tabController,
})

Constructor allows you to define styling and value properties.

Implementation

AdeptTabBarAppBar(
    {required this.title,
    required this.list,
    required this.getText,
    this.isScrollable = false,
    this.tabController});