facebook twitter hatena line email

「Flutter/HttpRequest」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(ページの作成:「==httpリクエストサンプル== <pre> import 'package:http/http.dart' as http; String _targetUrl = "https://example.com/api/hoge?id=10"; String response_body = await...」)
(相違点なし)

2019年12月18日 (水) 00:44時点における版

httpリクエストサンプル

import 'package:http/http.dart' as http;
String _targetUrl = "https://example.com/api/hoge?id=10";
String response_body = await http.read(_targetUrl);