onAnimationIteration property
Callback for when an iteration of a CSS Animation ends, and another one begins.
Related: onAnimationEnd, onAnimationStart
Implementation
@override
AnimationEventCallback? get onAnimationIteration =>
    (props[_$key__onAnimationIteration___$UbiquitousDomPropsMixin] ?? null)
        as AnimationEventCallback?;Callback for when an iteration of a CSS Animation ends, and another one begins.
Related: onAnimationEnd, onAnimationStart
Implementation
@override
set onAnimationIteration(AnimationEventCallback? value) =>
    props[_$key__onAnimationIteration___$UbiquitousDomPropsMixin] = value;