ComboPresetField constructor

const ComboPresetField({
  1. required String key,
  2. required String label,
  3. IconData? icon,
  4. FieldPrerequisite? prerequisite,
  5. LocationSet? locationSet,
  6. required ComboType type,
  7. required List<ComboOption> options,
  8. bool customValues = true,
  9. bool snakeCase = true,
})

Implementation

const ComboPresetField({
  required super.key,
  required super.label,
  super.icon,
  super.prerequisite,
  super.locationSet,
  required this.type,
  required this.options,
  this.customValues = true,
  this.snakeCase = true,
});