AutoScrollTag constructor
const
AutoScrollTag({
- required Key key,
- required AutoScrollController controller,
- required int index,
- Widget? child,
- TagHighlightBuilder? builder,
- Color? color,
- Color? highlightColor,
- bool disabled = false,
Implementation
const AutoScrollTag({
required Key key,
required this.controller,
required this.index,
this.child,
this.builder,
this.color,
this.highlightColor,
this.disabled = false,
}) : assert(child != null || builder != null),
super(key: key);