ParallaxData constructor

ParallaxData({
  1. Key? key,
  2. List<dynamic Function(ScrollNotification, RenderObject)> listeners = const [],
  3. required Widget child,
  4. required dynamic onAdd(
    1. dynamic (
      1. ScrollNotification?,
      2. RenderObject
      )
    ),
  5. VoidCallback? onUpdateRequest,
})

Implementation

ParallaxData(
    {Key? key,
    this.listeners = const [],
    required this.child,
    required this.onAdd,
    this.onUpdateRequest})
    : super(key: key, child: child);