ZebaParallax constructor

const ZebaParallax({
  1. Key? key,
  2. required Widget child,
  3. required ScrollController controller,
  4. double offset = 0.3,
})

Implementation

const ZebaParallax({
  super.key,
  required this.child,
  required this.controller,
  this.offset = 0.3,
});