AutocompleteHighlightedOption constructor Null safety
- {Key? key,
- required ValueNotifier<
int> highlightIndexNotifier, - required Widget child}
Create an instance of AutocompleteHighlightedOption inherited widget.
Implementation
const AutocompleteHighlightedOption({
super.key,
required ValueNotifier<int> highlightIndexNotifier,
required super.child,
}) : super(notifier: highlightIndexNotifier);