static String encodeUri(String scheme, List<String> pathComponents) { final path = pathComponents.join('/'); return '$scheme:$path'; }