Converts a file-system path to a file:// Uri.
path
file://
Uri toUri(String path) { final normalized = normalizePath(expandHome(path)); return Uri.file(normalized); }