PresetField constructor

const PresetField({
  1. required String key,
  2. required String label,
  3. IconData? icon,
  4. String? placeholder,
  5. FieldPrerequisite? prerequisite,
  6. LocationSet? locationSet,
})

Implementation

const PresetField({
  required this.key,
  required this.label,
  this.icon,
  this.placeholder,
  this.prerequisite,
  this.locationSet,
});