FastTextField constructor
const
FastTextField({
- Key? key,
- required String labelText,
- Duration debounceTimeDuration = kFastDebounceTimeDuration,
- TextAlign textAlign = TextAlign.start,
- bool showHelperBoundaries = true,
- bool shouldDebounceTime = false,
- bool allowAutocorrect = false,
- bool isReadOnly = false,
- bool isEnabled = true,
- TextEditingController? textEditingController,
- String? placeholderText,
- ValueChanged<
String> ? onValueChanged, - String? initialValue,
- 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);