EditorFields constructor

EditorFields({
  1. required Iterable<PresetField> fields,
  2. String? title,
  3. bool collapsed = true,
  4. bool iconLabels = false,
  5. Set<String> mandatoryKeys = const {},
})

Implementation

EditorFields({
  required this.fields,
  this.title,
  this.collapsed = true,
  this.iconLabels = false,
  this.mandatoryKeys = const {},
});