Wiki_Flutter_Package_Http - inoueshinichi/Wiki_Flutter GitHub Wiki
- Rest API (GET, POST, PUT, DELETE)
http.get(Uri.https('${ドメイン}'、'${パス}', /*クエリ*/{ <Map> });
http.post(Uri.https('${ドメイン}'、'${パス}', /*ボディ*/ body: /*クエリ*/{ <Map> });
http.put(Uri.https('${ドメイン}'、'${パス}', /*ボディ*/ body: /*クエリ*/{ <Map> });
http.delete(Uri.https('${ドメイン}'、'${パス}', /*ボディ*/ body: /*クエリ*/{ <Map> });