AlphabetScroll constructor
AlphabetScroll({
- Key? key,
- required ScrollController scrollController,
- CountryListDialogTheme dialogTheme = const CountryListDialogTheme(),
- required List<
String> ? alphabet, - required List<
Country> countries, - int unitsCanceled = 6,
Implementation
AlphabetScroll({
Key? key,
required this.scrollController,
this.dialogTheme = const CountryListDialogTheme(),
required this.alphabet,
required this.countries,
// this.unitHeight = 50.0,
this.unitsCanceled = 6,
}) : super(key: key);