Decodes a URL
Example:
UrlUtils.decode('hello%20world'); // 'hello world'
static String decode(String url) => Uri.decodeComponent(url);