FormTextBox constructor
FormTextBox({
- Key? key,
- required FormConfig config,
- required dynamic onChanged(
- dynamic value
- EasyFormzTheme? theme,
Creates a FormTextBox widget.
The config and onChanged parameters are required.
Implementation
FormTextBox({
super.key,
required this.config,
required this.onChanged,
EasyFormzTheme? theme,
}) : theme = theme ?? EasyFormzTheme();