TabBarItem constructor

TabBarItem({
  1. required String title,
  2. String? iconName,
  3. String? selectedIconName,
  4. required int tag,
})

Implementation

TabBarItem({
  required this.title,
  this.iconName,
  this.selectedIconName,
  required this.tag,
});