TabItem constructor

TabItem({
  1. required bool selected,
  2. required IconData iconData,
  3. required String title,
  4. required dynamic callbackFunction(
    1. Key? uniqueKey
    ),
  5. required Color textColor,
  6. required Color iconColor,
  7. required Color tabColor,
  8. BorderRadius? borderRadius,
  9. Gradient? backGroundGradientColor,
  10. CubertoTabStyle? tabStyle = CubertoTabStyle.styleNormal,
  11. Key? key,
})

Implementation

TabItem({
  required this.selected,
  required this.iconData,
  required this.title,
  required this.callbackFunction,
  required this.textColor,
  required this.iconColor,
  required this.tabColor,
  this.borderRadius,
  this.backGroundGradientColor,
  this.tabStyle = CubertoTabStyle.styleNormal,
  super.key,
});