FancyTabObject constructor
const
FancyTabObject({
- Key? key,
- void onTap()?,
- required bool selected,
- required int index,
- required String tabText,
- required int length,
- TextDirection? textDirection,
- Color? selectedColor,
- Color? unSelectedColor,
- Color? selectedTextColor,
- Color? unSelectedTextColor,
- required bool isFirst,
- required bool isLast,
- 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);