EnumFormComponent constructor

EnumFormComponent({
  1. required String property,
  2. required EnumDataEntity data,
  3. required String fieldId,
  4. FormComponentOptions options = const FormComponentOptions(),
  5. bool required = false,
})

Creates a FormComponent

Implementation

EnumFormComponent(
    {required this.property,
    required this.data,
    required this.fieldId,
    this.options = const FormComponentOptions(),
    this.required = false});