CountryTheme constructor

CountryTheme({
  1. String? searchText,
  2. String? searchHintText,
  3. String? lastPickText,
  4. Color? alphabetSelectedBackgroundColor,
  5. Color? alphabetTextColor,
  6. Color? alphabetSelectedTextColor,
  7. bool? isShowTitle,
  8. bool? isShowFlag,
  9. bool? isShowCode,
  10. bool? isDownIcon,
  11. String? initialSelection,
  12. bool? showEnglishName,
  13. bool? displayAsNationality,
})

Implementation

CountryTheme({
  this.searchText,
  this.searchHintText,
  this.lastPickText,
  this.alphabetSelectedBackgroundColor,
  this.alphabetTextColor,
  this.alphabetSelectedTextColor,
  this.isShowTitle,
  this.isShowFlag,
  this.isShowCode,
  this.isDownIcon,
  this.initialSelection,
  this.showEnglishName,
  this.displayAsNationality
});