SectionProps constructor

const SectionProps({
  1. String? header,
  2. Widget? headerComponent,
  3. required List<Widget> children,
  4. bool showDivider = false,
  5. String? padding,
  6. String? gap,
  7. bool card = false,
})

Implementation

const SectionProps({
  this.header,
  this.headerComponent,
  required this.children,
  this.showDivider = false,
  this.padding,
  this.gap,
  this.card = false,
});