AnimatedBoxRevealAnimationWidget constructor

const AnimatedBoxRevealAnimationWidget({
  1. Key? key,
  2. required AnimationController animationController,
  3. required double height,
  4. required double width,
  5. required Color boxColor,
  6. required Color surfaceColor,
  7. bool isVerticalReveal = false,
  8. bool dismissBoxPostReveal = true,
})

Implementation

const AnimatedBoxRevealAnimationWidget({
  super.key,
  required this.animationController,
  required this.height,
  required this.width,
  required this.boxColor,
  required this.surfaceColor,
  this.isVerticalReveal = false,
  this.dismissBoxPostReveal = true,
}) : super(
        listenable: animationController,
      );