aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib/utils
diff options
context:
space:
mode:
authorMarvin Borner2018-07-21 17:59:36 +0200
committerMarvin Borner2018-07-21 17:59:36 +0200
commitf03f214a47a78a52d73e28a76eec78d3f10d07e5 (patch)
treeeaaf280fa5b89d32018236e06e1fc22220b8fa80 /lib/utils
parentacc5d5e9e960db9525a4368b393cb97fab8658e7 (diff)
Rewritten login activity
Diffstat (limited to 'lib/utils')
-rw-r--r--lib/utils/network_util.dart38
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