onAnimationIteration property

  1. @override
AnimationEventCallback? onAnimationIteration

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?;
  1. @override
void onAnimationIteration=(AnimationEventCallback? value)

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;