StackNotification constructor

StackNotification({
  1. required dynamic checkOffset(
    1. double offset
    ),
  2. required Function atTop,
  3. required Function atBottom,
  4. required dynamic scrollDirection(
    1. ScrollDirection direction
    ),
  5. required ScrollController scrollController,
  6. required Widget child,
  7. int dragY = 16,
  8. Key? key,
})

Implementation

StackNotification({
  required this.checkOffset,
  required this.atTop,
  required this.atBottom,
  required this.scrollDirection,
  required this.scrollController,
  required this.child,
  this.dragY = 16,
  Key? key,
}) : super(key: key);