previousPath property

String? previousPath

Path of previousUrl

This is the same as the url WITHOUT the queryParameters

Implementation

String? get previousPath =>
    previousUrl != null ? Uri.parse(previousUrl!).path : null;