currentAnimationNotifier property

ValueNotifier<T?> currentAnimationNotifier

A ValueNotifier that notifies when the current animation changes.

Implementation

ValueNotifier<T?> get currentAnimationNotifier =>
    _currentAnimationNotifier ??= ValueNotifier<T?>(_current);