frontRotation static method

Animation<double> frontRotation(
  1. AnimationController controller,
  2. double beginRot
)

card animation front

Implementation

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