Extracts path from URL
Example:
UrlUtils.extractPath('https://example.com/path/to/page'); // '/path/to/page'
static String? extractPath(String url) { final uri = parse(url); return uri?.path; }