ParallaxData constructor
ParallaxData({
- Key? key,
- List<
dynamic Function(ScrollNotification, RenderObject)> listeners = const [], - required Widget child,
- required dynamic onAdd(
- dynamic ()
- VoidCallback? onUpdateRequest,
Implementation
ParallaxData(
{Key? key,
this.listeners = const [],
required this.child,
required this.onAdd,
this.onUpdateRequest})
: super(key: key, child: child);