FormRenderer constructor
const
FormRenderer({
- Key? key,
- required FormModel form,
- OnFormChanged? onChanged,
- OnFormSubmitted? onSubmit,
- OnFormSubmitFailed? onError,
- Map<
String, dynamic> ? initialData,
Implementation
const FormRenderer({
Key? key,
required this.form,
this.onChanged,
this.onSubmit,
this.onError,
this.initialData,
}) : super(key: key);