diff options
Diffstat (limited to 'lib/utils/network_util.dart')
-rw-r--r-- | lib/utils/network_util.dart | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/lib/utils/network_util.dart b/lib/utils/network_util.dart deleted file mode 100644 index 463e98f..0000000 --- a/lib/utils/network_util.dart +++ /dev/null @@ -1,38 +0,0 @@ -import 'dart:async'; -import 'dart:convert'; -import 'package:http/http.dart' as http; - -class NetworkUtil { - // next three lines makes this class a Singleton - static NetworkUtil _instance = new NetworkUtil.internal(); - NetworkUtil.internal(); - factory NetworkUtil() => _instance; - - final JsonDecoder _decoder = new JsonDecoder(); - - Future<dynamic> get(String url) { - return http.get(url).then((http.Response response) { - final String res = response.body; - final int statusCode = response.statusCode; - - if (statusCode < 200 || statusCode > 400 || json == null) { - throw new Exception("Error while fetching data"); - } - return _decoder.convert(res); - }); - } - - Future<dynamic> post(String url, {Map headers, body, encoding}) { - return http - .post(url, body: body, headers: headers, encoding: encoding) - .then((http.Response response) { - final String res = response.body; - final int statusCode = response.statusCode; - - if (statusCode < 200 || statusCode > 400 || json == null) { - throw new Exception("Error while fetching data"); - } - return _decoder.convert(res); - }); - } -}
\ No newline at end of file |