reverseTransitionDuration property

  1. @override
Duration get reverseTransitionDuration
override

The duration the transition going in reverse.

By default, the reverse transition duration is set to the value of the forwards transitionDuration.

Implementation

@override
Duration get reverseTransitionDuration =>
    _getPageTransitionBuilder(navigator!.context)?.reverseTransitionDuration ??
    const Duration(microseconds: 300);