CNTabBarItem constructor

const CNTabBarItem({
  1. String? label,
  2. CNSymbol? icon,
  3. CNSymbol? activeIcon,
  4. String? badge,
  5. IconData? customIcon,
  6. IconData? activeCustomIcon,
  7. CNImageAsset? imageAsset,
  8. CNImageAsset? activeImageAsset,
})

Creates a tab bar item description.

Implementation

const CNTabBarItem({
  this.label,
  this.icon,
  this.activeIcon,
  this.badge,
  this.customIcon,
  this.activeCustomIcon,
  this.imageAsset,
  this.activeImageAsset,
});