read static method

Future<String> read(
  1. String path, {
  2. Map<String, String>? headers,
})

Sends an HTTP GET request with the given headers to the given URL and returns a Future that completes to the body of the response as a String.

The Future will emit a http.ClientException if the response doesn't have a success status code.

This automatically initializes a new http.Client and closes that client once the request is complete. If you're planning on making multiple requests to the same server, you should use a single http.Client for all of those requests.

指定されたヘッダーを指定された HTTP GET リクエストを指定された URL に送信し、String としてレスポンスの本文に完了する Future を返します。

レスポンスに成功ステータス コードがない場合、Future は http.ClientException を発行します。 これにより、新しい http.Client が自動的に初期化され、リクエストが完了するとそのクライアントが閉じられます。同じサーバーに複数のリクエストを送信する予定がある場合は、それらすべてのリクエストに対して単一の http.Client を使用する必要があります。

Implementation

static Future<String> read(
  String path, {
  Map<String, String>? headers,
}) async {
  final url = Uri.parse(path);
  return http.read(url, headers: headers);
}