StickySection constructor

const StickySection({
  1. Key? key,
  2. required String title,
  3. required Widget? sliver,
  4. Color? headerColor,
})

Creates a new sticky section widget.

Implementation

const StickySection({
  super.key,
  required this.title,
  required this.sliver,
  this.headerColor,
});