path property

  1. @override
String? path
inherited

Path of url

This is the same as the url WITHOUT the queryParameters

Implementation

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