MobileTabs constructor

MobileTabs({
  1. int? length,
  2. String? tabOne,
  3. String? tabTwo,
  4. Widget? tabOneView,
  5. Widget? tabTwoView,
  6. TabController? tabController,
  7. Color? indicatorColor,
  8. Color? labelColor,
  9. Color? unselectedLabelColor,
})

Implementation

MobileTabs({
  this.length,
  this.tabOne,

  this.tabTwo,
  this.tabOneView,
  this.tabTwoView,
  this.tabController,
  this.indicatorColor,
  this.labelColor,
  this.unselectedLabelColor,
});