CNTab constructor

const CNTab({
  1. required String title,
  2. CNSymbol? sfSymbol,
  3. CNSymbol? activeSfSymbol,
  4. bool isSearchTab = false,
  5. int? badgeCount,
})

Creates a tab configuration for CNTabBarNative.

Implementation

const CNTab({
  required this.title,
  this.sfSymbol,
  this.activeSfSymbol,
  this.isSearchTab = false,
  this.badgeCount,
});