ParallaxItem constructor

const ParallaxItem({
  1. Key? key,
  2. required ParallaxFactor factor,
  3. Alignment alignment = Alignment.center,
  4. ParallaxFactor? rotationFactor,
  5. required Widget child,
})

Implementation

const ParallaxItem({
  Key? key,
  required this.factor,
  this.alignment = Alignment.center,
  this.rotationFactor,
  required this.child,
});