CurrencySelector<K extends CurrencySelectorItem> constructor

const CurrencySelector<K extends CurrencySelectorItem>({
  1. Key? key,
  2. required Function update,
  3. String? value,
  4. TextStyle? textStyle,
  5. Color? tileColor,
  6. String? hintText,
  7. TextStyle? hintStyle,
  8. TextStyle? headerHintStyle,
  9. Color? fieldBackground,
  10. EdgeInsets? indent,
  11. TextStyle? labelStyle,
  12. String? labelText,
  13. bool withLabel = false,
})

Implementation

const CurrencySelector({
  super.key,
  required this.update,
  this.value,
  this.textStyle,
  this.tileColor,
  this.hintText,
  this.hintStyle,
  this.headerHintStyle,
  this.fieldBackground,
  this.indent,
  this.labelStyle,
  this.labelText,
  this.withLabel = false,
}) : searchType = CurrencySelectorType.searchAnchor;