transitionOutCount property

int transitionOutCount

The number of transitionend events that occur when the transition node is hidden.

Defaults to 1 to match previous behavior in the case where props.transitionCount is null.

Implementation

int get transitionOutCount => props.transitionOutCount ?? props.transitionCount ?? 1;