AlphabetScroll constructor

const AlphabetScroll({
  1. Key? key,
  2. required ScrollController scrollController,
  3. required List<String> alphabet,
  4. required List<Country> countries,
  5. required String? selectedChar,
  6. DialogThemeData dialogTheme = const DialogThemeData(),
  7. int unitsCanceled = 6,
  8. Names displayName = Names.common,
})

Implementation

const AlphabetScroll({
  super.key,
  required this.scrollController,
  required this.alphabet,
  required this.countries,
  required this.selectedChar,
  this.dialogTheme = const DialogThemeData(),
  this.unitsCanceled = 6,
  this.displayName = Names.common,
});