FancyTabObject constructor

const FancyTabObject({
  1. Key? key,
  2. void onTap()?,
  3. required bool selected,
  4. required int index,
  5. required String tabText,
  6. required int length,
  7. TextDirection? textDirection,
  8. Color? selectedColor,
  9. Color? unSelectedColor,
  10. Color? selectedTextColor,
  11. Color? unSelectedTextColor,
  12. required bool isFirst,
  13. required bool isLast,
  14. Color? borderColor,
})

Implementation

const FancyTabObject(
    {Key? key,
    this.onTap,
    required this.selected,
    required this.index,
    required this.tabText,
    required this.length,
    this.textDirection,
    this.selectedColor,
    this.unSelectedColor,
    this.selectedTextColor,
    this.unSelectedTextColor,
    required this.isFirst,
    required this.isLast,
    this.borderColor})
    : super(key: key);