ParallaxWidget constructor

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

Implementation

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