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