MainTabBar constructor

MainTabBar({
  1. List<String>? tabs,
  2. int? activeTab,
  3. dynamic onTap(
    1. int
    )?,
  4. double fontSize = 24,
  5. double lineWidth = 8,
})

Implementation

MainTabBar({
  this.tabs,
  this.activeTab,
  this.onTap,
  this.fontSize = 24,
  this.lineWidth = 8,
});