getTween method

Animation<double> getTween(
  1. AnimationController controller
)

Implementation

Animation<double> getTween(AnimationController controller) {
  return Tween<double>(begin: begin, end: end).animate(controller);
}