FastTextField constructor

const FastTextField({
  1. Key? key,
  2. required String labelText,
  3. Duration debounceTimeDuration = kFastDebounceTimeDuration,
  4. TextAlign textAlign = TextAlign.start,
  5. bool showHelperBoundaries = true,
  6. bool shouldDebounceTime = false,
  7. bool allowAutocorrect = false,
  8. bool isReadOnly = false,
  9. bool isEnabled = true,
  10. TextEditingController? textEditingController,
  11. String? placeholderText,
  12. ValueChanged<String>? onValueChanged,
  13. String? initialValue,
  14. String? captionText,
  15. String? helperText,
})

Implementation

const FastTextField({
  Key? key,
  required this.labelText,
  this.debounceTimeDuration = kFastDebounceTimeDuration,
  this.textAlign = TextAlign.start,
  this.showHelperBoundaries = true,
  this.shouldDebounceTime = false,
  this.allowAutocorrect = false,
  this.isReadOnly = false,
  this.isEnabled = true,
  this.textEditingController,
  this.placeholderText,
  this.onValueChanged,
  this.initialValue,
  this.captionText,
  this.helperText,
}) : super(key: key);