TabsWrap constructor

TabsWrap({
  1. Widget? customBottomWidge,
  2. VoidCallback? btnTap1,
  3. String? btnTitle1,
  4. VoidCallback? btnTap2,
  5. String? btnTitle2,
  6. VoidCallback? btnTap3,
  7. String? btnTitle3,
  8. bool? hideBottom,
  9. bool? hideCustomTab = true,
  10. int? tabsInitIndex,
  11. List<CustomTabItem>? customTabs,
})

Implementation

TabsWrap(
    {this.customBottomWidge,
    this.btnTap1,
    this.btnTitle1,
    this.btnTap2,
    this.btnTitle2,
    this.btnTap3,
    this.btnTitle3,
    this.hideBottom,
    this.hideCustomTab = true,
    this.tabsInitIndex,
    this.customTabs});