OverlapScroll constructor

const OverlapScroll({
  1. Key? key,
  2. OverlapScrollController? controller,
  3. double? cacheExtent,
  4. ScrollPhysics? physics,
  5. String? restorationId,
  6. bool clipStatic = true,
  7. required List<Widget> slivers,
  8. required Widget staticPart,
})

Implementation

const OverlapScroll({
  super.key,
  this.controller,
  this.cacheExtent,
  this.physics,
  this.restorationId,
  this.clipStatic = true,
  required this.slivers,
  required this.staticPart,
});