Section constructor

const Section({
  1. required SectionKind kind,
  2. required String title,
  3. String? capabilityId,
  4. List<String> capabilityIds = const [],
  5. SelectionType? selectionType,
  6. bool optional = false,
})

Implementation

const Section({
  required this.kind,
  required this.title,
  this.capabilityId,
  this.capabilityIds = const [],
  this.selectionType,
  this.optional = false,
});