ParallaxBackground constructor

const ParallaxBackground({
  1. Key? key,
  2. required String backgroundImage,
  3. required List<ParallaxItem> foregroundChilds,
  4. Widget? child,
  5. bool reverse = false,
  6. bool fallback = false,
})

Implementation

const ParallaxBackground(
    {Key? key,
    required this.backgroundImage,
    required this.foregroundChilds,
    this.child,
    this.reverse = false,
    this.fallback = false})
    : super(key: key);