FormioComponentBuildContext constructor

const FormioComponentBuildContext({
  1. required ComponentModel component,
  2. required dynamic value,
  3. required ValueChanged onChanged,
  4. Map<String, dynamic>? formData,
  5. FilePickerCallback? onFilePick,
  6. DatePickerCallback? onDatePick,
  7. TimePickerCallback? onTimePick,
})

Implementation

const FormioComponentBuildContext({
  required this.component,
  required this.value,
  required this.onChanged,
  this.formData,
  this.onFilePick,
  this.onDatePick,
  this.onTimePick,
});