OudsTextField constructor
- Key? key,
- TextEditingController? controller,
- FocusNode? focusNode,
- bool? enabled = null,
- bool? readOnly = null,
- TextInputType? keyboardType,
- 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,
});