state property

AnimatedTextState get state

Returns the current state of the animation.

Implementation

AnimatedTextState get state => stateNotifier.value;
set state (AnimatedTextState state)

Sets the current state of the animation.

Implementation

set state(AnimatedTextState state) {
  stateNotifier.value = state;
}