tower static method

Tower<AnimationSystemState> tower(
  1. [AnimationSystemState? cardState]
)

Implementation

static Tower<AnimationSystemState> tower([AnimationSystemState? cardState]){
  return Tower<AnimationSystemState>(
    _animationSystemReducer,
    initialState: AnimationSystemState.initial()
  );
}