ZeroTabBar constructor

const ZeroTabBar({
  1. Key? key,
  2. required List<ZeroTab> tabs,
  3. TabController? controller,
  4. ValueChanged<int>? onTap,
  5. ScrollPhysics? physics,
  6. ZeroTabBarStyle? style,
})

Implementation

const ZeroTabBar({
  super.key,
  required this.tabs,
  this.controller,
  this.onTap,
  this.physics,
  this.style,
});