CountryTheme constructor

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

Implementation

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