reverseTransitionDuration property

  1. @override
Duration get reverseTransitionDuration
override

The duration for the reverse animation when popping the route. Falls back to duration if not specified.

Implementation

@override

/// The duration for the reverse animation when popping the route.
/// Falls back to [duration] if not specified.
Duration get reverseTransitionDuration =>
    (reverseDuration ?? duration) ?? Duration(seconds: 300);