CustomTab constructor

const CustomTab({
  1. Key? key,
  2. required String label,
  3. required IconData icon,
  4. required String route,
  5. required double tabBarWidth,
  6. required double tabIconSize,
  7. required double tabTextSize,
})

Implementation

const CustomTab({
  super.key,
  required this.label,
  required this.icon,
  required this.route,
  required this.tabBarWidth,
  required this.tabIconSize,
  required this.tabTextSize,
});