Section constructor
const
Section({
- Key? key,
- required List<
SectionItem> children, - WrapAlignment wrapAlignment = WrapAlignment.start,
- WrapCrossAlignment wrapCrossAlignment = WrapCrossAlignment.start,
- WrapAlignment runAlignment = WrapAlignment.start,
- bool contentPadding = true,
- double? spacing,
- double? runSpacing,
Implementation
const Section({
super.key,
required this.children,
this.wrapAlignment = WrapAlignment.start,
this.wrapCrossAlignment = WrapCrossAlignment.start,
this.runAlignment = WrapAlignment.start,
this.contentPadding = true,
this.spacing,
this.runSpacing,
});