getAnimation<R> method

  1. @override
Animation<R> getAnimation<R>(
  1. String name
)
override

get the animation of provided name

It will throw if Animator.tweenMap is null

Implementation

@override
Animation<R> getAnimation<R>(String name) {
  return _animatorState!.getAnimation(name);
}