FormComponent constructor

const FormComponent({
  1. Key? key,
  2. required ComponentModel component,
  3. required Map<String, dynamic> value,
  4. required ValueChanged<Map<String, dynamic>> onChanged,
  5. FormService? formService,
})

Implementation

const FormComponent({
  super.key,
  required this.component,
  required this.value,
  required this.onChanged,
  this.formService,
});