SliverSection constructor

const SliverSection({
  1. String? header,
  2. Component? headerComponent,
  3. required List<Component> children,
  4. double gap = 12,
  5. Key? key,
})

Implementation

const SliverSection({
  this.header,
  this.headerComponent,
  required this.children,
  this.gap = 12,
  super.key,
});