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