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