animation property

  1. @override
Animation<T> animation
override

The Animation object

Implementation

@override
Animation<T> get animation {
  if (_animation != null) {
    return _animation!;
  }

  return _animation ??= _tween.animate(injected.curvedAnimation);
}