OudsTextField constructor

OudsTextField({
  1. Key? key,
  2. TextEditingController? controller,
  3. FocusNode? focusNode,
  4. bool? enabled = null,
  5. bool? readOnly = null,
  6. TextInputType? keyboardType,
  7. required OudsInputDecoration decoration,
})

Creates an instance of OudsTextField, which is an alias for OudsTextInput.

All parameters are forwarded to the superclass OudsTextInput.

enabled and readOnly default to null, allowing the superclass to handle defaults.

Implementation

OudsTextField({
  super.key,
  super.controller,
  super.focusNode,
  super.enabled = null,
  super.readOnly = null,
  super.keyboardType,
  required super.decoration,
});