Section constructor
const
Section({
- required SectionKind kind,
- required String title,
- String? capabilityId,
- List<
String> capabilityIds = const [], - SelectionType? selectionType,
- bool optional = false,
Implementation
const Section({
required this.kind,
required this.title,
this.capabilityId,
this.capabilityIds = const [],
this.selectionType,
this.optional = false,
});