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