previousPath property

  1. @override
String? previousPath
inherited

Path of previousUrl

This is the same as the url WITHOUT the queryParameters

Implementation

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