DropdownControl constructor

const DropdownControl({
  1. Key? key,
  2. required String label,
  3. required String? description,
  4. required List<String> path,
  5. required Map<String, dynamic> jsonData,
  6. required JsonFormsCallback callback,
  7. required List enumValues,
})

Implementation

const DropdownControl({
  super.key,
  required this.label,
  required this.description,
  required this.path,
  required this.jsonData,
  required this.callback,
  required this.enumValues,
});