SlideContainer constructor

const SlideContainer({
  1. Key? key,
  2. required Animation<double> animation,
  3. required Size containerSize,
  4. required Color secondBgColor,
  5. required double horizontalPadding,
})

Implementation

const SlideContainer({
  super.key,
  required this.animation,
  required this.containerSize,
  required this.secondBgColor,
  required this.horizontalPadding,
}) : super(listenable: animation);