RotateDownTransition constructor

RotateDownTransition({
  1. Curve curve = Curves.easeOutSine,
  2. Color backgroundColor = Colors.black,
  3. double angle = 45,
})

Implementation

RotateDownTransition({
  this.curve = Curves.easeOutSine,
  this.backgroundColor = Colors.black,
  double angle = 45,
}) : this.angle = math.pi / 180 * angle;