Get file content as string (for text files)
Future<String> getFileContentAsString(String fileId) async { final bytes = await getFileContent(fileId); return String.fromCharCodes(bytes); }