TabPageSelector constructor Null safety
- {Key? key,
- TabController? controller,
- double indicatorSize = 12.0,
- Color? color,
- Color? selectedColor,
- BorderStyle? borderStyle}
Creates a compact widget that indicates which tab has been selected.
Implementation
const TabPageSelector({
super.key,
this.controller,
this.indicatorSize = 12.0,
this.color,
this.selectedColor,
this.borderStyle,
}) : assert(indicatorSize != null && indicatorSize > 0.0);