Opens a given file.
static Future<void> openFile(String input) async { final uri = Uri.file(input); await open(uri); }