CurrencyListPickerTheme constructor

CurrencyListPickerTheme({
  1. String searchText = "",
  2. String searchHintText = "",
  3. String lastPickText = "",
  4. Color alphabetSelectedBackgroundColor = Colors.transparent,
  5. Color alphabetTextColor = Colors.black,
  6. Color alphabetSelectedTextColor = Colors.grey,
  7. bool isShowTitle = true,
  8. bool isShowSymbol = true,
  9. bool isShowCode = true,
  10. bool isDownIcon = true,
  11. String initialSelection = "EUR",
  12. bool showEnglishName = true,
})

Implementation

CurrencyListPickerTheme({
  this.searchText = "",
  this.searchHintText = "",
  this.lastPickText = "",
  this.alphabetSelectedBackgroundColor = Colors.transparent,
  this.alphabetTextColor = Colors.black,
  this.alphabetSelectedTextColor = Colors.grey,
  this.isShowTitle = true,
  this.isShowSymbol = true,
  this.isShowCode = true,
  this.isDownIcon = true,
  this.initialSelection = "EUR",
  this.showEnglishName = true,
});