CustomTabPageSelectorIndicator constructor
const
CustomTabPageSelectorIndicator({})
Creates an indicator used by CustomTabPageSelector.
The backgroundColor, borderColor, and size parameters must not be null.
Implementation
const CustomTabPageSelectorIndicator({
super.key,
required this.backgroundColor,
required this.borderColor,
required this.size,
}) : assert(backgroundColor != null),
assert(borderColor != null),
assert(size != null);