Section constructor

const Section({
  1. Key? key,
  2. required List<SectionItem> children,
  3. WrapAlignment wrapAlignment = WrapAlignment.start,
  4. WrapCrossAlignment wrapCrossAlignment = WrapCrossAlignment.start,
  5. WrapAlignment runAlignment = WrapAlignment.start,
  6. bool contentPadding = true,
  7. double? spacing,
  8. 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,
});