StickyHeaderDelegate constructor

StickyHeaderDelegate({
  1. required Widget child,
  2. required double minHeight,
  3. required double maxHeight,
  4. Color pinnedColor = Colors.transparent,
  5. Color normalColor = Colors.transparent,
})

Implementation

StickyHeaderDelegate({
  required this.child,
  required this.minHeight,
  required this.maxHeight,
  this.pinnedColor = Colors.transparent,
  this.normalColor = Colors.transparent,
});