Wiki_Flutter_Package_Http - inoueshinichi/Wiki_Flutter GitHub Wiki

Dart/FlutterのHttp パッケージ

参考

httpライブラリ

  • 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> });
⚠️ **GitHub.com Fallback** ⚠️