InputField constructor
const
InputField({
- Key? key,
- required BoxStyle style,
- required FieldBuilderFn builder,
- required FormFieldState<
String> state, - bool disabled = false,
- Duration? debounce,
- ValueChanged<
String> ? onDebounce, - FocusChangeFn? onFocusChange,
- String? name,
- TextEditingController? controller,
- List<
TextInputFormatter> ? formatters, - ValueChanged<
String> ? onChange, - String? value,
- FocusNode? focusNode,
Implementation
const InputField({
super.key,
required this.style,
required this.builder,
required this.state,
this.disabled = false,
this.debounce,
this.onDebounce,
this.onFocusChange,
this.name,
this.controller,
this.formatters,
this.onChange,
this.value,
this.focusNode,
});