From d07774c6d5707aee65a180757fda79accad5f727 Mon Sep 17 00:00:00 2001 From: Pierre HUBERT Date: Thu, 25 Apr 2019 20:14:55 +0200 Subject: [PATCH] Remove useless warning about empty response body for request with files --- lib/helpers/api_helper.dart | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/helpers/api_helper.dart b/lib/helpers/api_helper.dart index 89698d3..4106a63 100644 --- a/lib/helpers/api_helper.dart +++ b/lib/helpers/api_helper.dart @@ -67,8 +67,6 @@ class APIHelper { } /// Same as exec, but also allows to send files - /// - /// Warning ! Currently the response body to such requests is always null ! Future execWithFiles(APIRequest request) async { return await exec(request, multipart: true); }