transitionCount property

  1. @override
int? transitionCount

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

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;