frontCardRota method

Animation<double> frontCardRota (AnimationController controller, double beginRot)

Implementation

static Animation<double> frontCardRota(
    AnimationController controller, double beginRot) {
  return new Tween(begin: beginRot, end: 0.0).animate(
      new CurvedAnimation(parent: controller, curve: Curves.easeOut));
}