CLTabView constructor

const CLTabView({
  1. Key? key,
  2. required List<CLTabItem> clTabItems,
  3. String? title,
  4. bool showDivider = false,
  5. Color? indicatorColor,
})

Implementation

const CLTabView({
  super.key,
  required this.clTabItems,
  this.title,
  this.showDivider = false,
  this.indicatorColor,
});