Encodes a URL
Example:
UrlUtils.encode('hello world'); // 'hello%20world'
static String encode(String url) { return Uri.encodeComponent(url); }