NiceStickyHeader constructor

const NiceStickyHeader({
  1. Key? key,
  2. required Widget header,
  3. required Widget child,
  4. double headerHeight = 56,
  5. Color? headerBackground,
  6. double elevation = 2,
})

Implementation

const NiceStickyHeader({
  super.key,
  required this.header,
  required this.child,
  this.headerHeight = 56,
  this.headerBackground,
  this.elevation = 2,
});