animationOption static method

Animation<double> animationOption(
  1. AnimationController animationController
)

Implementation

static Animation<double> animationOption(
    AnimationController animationController) {
  return Tween<double>(begin: 0.0, end: 1.0).animate(CurvedAnimation(
      parent: animationController,
      curve: const Interval((1 / 10) * 3, 1.0, curve: Curves.fastOutSlowIn)));
}