FastSearchField constructor

const FastSearchField({
  1. Key? key,
  2. Duration debounceTimeDuration = kFastDebounceTimeDuration,
  3. String placeholderText = kFastSearchPlaceholderText,
  4. EdgeInsets margin = const EdgeInsets.only(bottom: 8.0),
  5. TextAlign textAlign = TextAlign.start,
  6. bool shouldDebounceTime = false,
  7. bool allowAutocorrect = false,
  8. bool isReadOnly = false,
  9. bool isEnabled = true,
  10. TextEditingController? textEditingController,
  11. ValueChanged<String>? onValueChanged,
})

Implementation

const FastSearchField({
  Key? key,
  this.debounceTimeDuration = kFastDebounceTimeDuration,
  this.placeholderText = kFastSearchPlaceholderText,
  this.margin = const EdgeInsets.only(bottom: 8.0),
  this.textAlign = TextAlign.start,
  this.shouldDebounceTime = false,
  this.allowAutocorrect = false,
  this.isReadOnly = false,
  this.isEnabled = true,
  this.textEditingController,
  this.onValueChanged,
}) : super(key: key);