Section constructor

const Section({
  1. String? header,
  2. Component? headerComponent,
  3. required List<Component> children,
  4. bool showDivider = false,
  5. EdgeInsets? padding,
  6. double gap = 12,
  7. bool card = false,
  8. Key? key,
})

Implementation

const Section({
  this.header,
  this.headerComponent,
  required this.children,
  this.showDivider = false,
  this.padding,
  this.gap = 12,
  this.card = false,
  super.key,
});