Future<Document> fetchDocumentFromLink(String link) async { final response = await get(link); return parse(response.data); }