StickyWidget constructor

const StickyWidget({
  1. Key? key,
  2. required Widget childBuilder(
    1. BuildContext,
    2. bool
    ),
  3. required ScrollController scrollController,
  4. double? top,
  5. double? bottom,
  6. dynamic stickyChanged(
    1. bool
    )?,
  7. GlobalKey<State<StatefulWidget>>? containerKey,
})

Implementation

const StickyWidget({
  super.key,
  required this.childBuilder,
  required this.scrollController,
  this.top,
  this.bottom,
  this.stickyChanged,
  this.containerKey,
});