ParallaxWidget constructor

const ParallaxWidget({
  1. Key? key,
  2. double translationFactor = 100.0,
  3. required Widget child,
})

Implementation

const ParallaxWidget({
  Key? key,
  this.translationFactor = 100.0,
  required this.child,
}) : super(key: key);