FormDate constructor
FormDate({
- Key? key,
- required FormConfig config,
- required dynamic onChanged(
- dynamic value
- EasyFormzTheme? theme,
Creates a FormDate widget.
The config
and onChanged
parameters must not be null.
The theme
parameter is optional and defaults to EasyFormzTheme.
Implementation
FormDate({
super.key,
required this.config,
required this.onChanged,
EasyFormzTheme? theme,
}) : theme = theme ?? EasyFormzTheme();