previousPath property

  1. @override
String? get previousPath
override

Path of previousUrl

This is the same as the url WITHOUT the queryParameters

Implementation

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