transitionCount property
The number of transitionend event that occur when the transition node is shown/hidden.
Serves as the default for transitionInCount/transitionOutCount when they are not specified.
Default: 1
Implementation
@override
int? get transitionCount =>
    (props[_$key__transitionCount__TransitionPropsMixin] ?? null) as int?;The number of transitionend event that occur when the transition node is shown/hidden.
Serves as the default for transitionInCount/transitionOutCount when they are not specified.
Default: 1
Implementation
@override
set transitionCount(int? value) =>
    props[_$key__transitionCount__TransitionPropsMixin] = value;