backCardSize method

Animation<Size> backCardSize (AnimationController controller, Size beginSize, Size endSize)

Implementation

static Animation<Size> backCardSize(
    AnimationController controller, Size beginSize, Size endSize) {
  return new SizeTween(begin: beginSize, end: endSize).animate(
      new CurvedAnimation(parent: controller, curve: Curves.easeOut));
}