InputSearchField constructor

const InputSearchField({
  1. Key? key,
  2. String placeholder = '',
  3. bool disabled = false,
  4. String? prefixIconName,
  5. String? initialValue,
  6. String? initialSuffixIcon,
  7. ValueChanged<String>? onChanged,
  8. ValueChanged<String>? onSuffixIconChanged,
  9. EdgeInsets? prefixIconPadding,
  10. EdgeInsets? suffixIconPadding,
})

Implementation

const InputSearchField({
  super.key,
  this.placeholder = '',
  this.disabled = false,
  this.prefixIconName,
  this.initialValue,
  this.initialSuffixIcon,
  this.onChanged,
  this.onSuffixIconChanged,
  this.prefixIconPadding,
  this.suffixIconPadding,
});