TabItem constructor

const TabItem({
  1. Key? key,
  2. required String tabTitle,
  3. bool? isDisplayCount = false,
  4. String? listItemCount,
  5. bool? isSelected = true,
  6. Color? countBackgroundColor,
  7. Color? countTextColor,
  8. double? countTextSize,
  9. double? countCircleRadius,
})

Implementation

const TabItem({
  super.key,
  required this.tabTitle,
  this.isDisplayCount = false,
  this.listItemCount,
  this.isSelected = true,
  this.countBackgroundColor,
  this.countTextColor,
  this.countTextSize,
  this.countCircleRadius,
});