AlphabetScroll constructor

AlphabetScroll({
  1. Key? key,
  2. required ScrollController scrollController,
  3. CountryListDialogTheme dialogTheme = const CountryListDialogTheme(),
  4. required List<String>? alphabet,
  5. required List<Country> countries,
  6. 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);