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,
  7. FilePickerCallback? onFilePick,
  8. DatePickerCallback? onDatePick,
  9. TimePickerCallback? onTimePick,
  10. bool enableLinks = true,
  11. ApiClient? apiClient,
})

Implementation

const FormRenderer({
  super.key,
  required this.form,
  this.onChanged,
  this.onSubmit,
  this.onError,
  this.initialData,
  this.onFilePick,
  this.onDatePick,
  this.onTimePick,
  this.enableLinks = true,
  this.apiClient,
});