FieldProps constructor

FieldProps({
  1. required FormFieldState<String> state,
  2. required FocusNode focusNode,
  3. String? name,
  4. String? value,
  5. TextEditingController? controller,
  6. bool isDisabled = false,
})

Implementation

FieldProps({
  required this.state,
  required this.focusNode,
  this.name,
  this.value,
  this.controller,
  this.isDisabled = false,
});