SectionConfig constructor

SectionConfig({
  1. required String id,
  2. String? title,
  3. String? description,
  4. bool collapsible = false,
  5. bool initiallyExpanded = true,
  6. required List<FieldConfig> fields,
})

Creates a SectionConfig instance.

Implementation

SectionConfig({
  required this.id,
  this.title,
  this.description,
  this.collapsible = false,
  this.initiallyExpanded = true,
  required this.fields,
});