FormRenderer constructor

const FormRenderer({
  1. Key? key,
  2. required FormModel form,
  3. OnFormChanged? onChanged,
  4. OnFormSubmitted? onSubmit,
  5. OnFormSubmitFailed? onError,
  6. Map<String, dynamic>? initialData,
})

Implementation

const FormRenderer({
  Key? key,
  required this.form,
  this.onChanged,
  this.onSubmit,
  this.onError,
  this.initialData,
}) : super(key: key);