FastSearchField constructor
const
FastSearchField({
- Key? key,
- Duration debounceTimeDuration = kFastDebounceTimeDuration,
- String placeholderText = kFastSearchPlaceholderText,
- EdgeInsets margin = const EdgeInsets.only(bottom: 8.0),
- TextAlign textAlign = TextAlign.start,
- bool shouldDebounceTime = false,
- bool allowAutocorrect = false,
- bool isReadOnly = false,
- bool isEnabled = true,
- TextEditingController? textEditingController,
- 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);