InputField constructor

const InputField({
  1. Key? key,
  2. required BoxStyle style,
  3. required FieldBuilderFn builder,
  4. required FormFieldState<String> state,
  5. bool disabled = false,
  6. Duration? debounce,
  7. ValueChanged<String>? onDebounce,
  8. FocusChangeFn? onFocusChange,
  9. String? name,
  10. TextEditingController? controller,
  11. List<TextInputFormatter>? formatters,
  12. ValueChanged<String>? onChange,
  13. String? value,
  14. 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,
});