diff --git a/Sources/dafl_project_flutter/lib/api/api.dart b/Sources/dafl_project_flutter/lib/api/api.dart index d7d824d..0adba79 100644 --- a/Sources/dafl_project_flutter/lib/api/api.dart +++ b/Sources/dafl_project_flutter/lib/api/api.dart @@ -107,6 +107,7 @@ class Api { 'Content-Type': 'application/json' }); // Implement treatment of data's - //print(response.body); + var decodedResponse = jsonDecode(utf8.decode(response.bodyBytes)) as Map; + print(decodedResponse['item']['href']); } }