Clone this repo:
  1. 8233f74 Merge pull request #37 from google/dependabot/github_actions/actions/checkout-3.6.0 by Devon Carew · 4 weeks ago master
  2. 57dc02b Bump actions/checkout from 3.5.2 to 3.6.0 by dependabot[bot] · 4 weeks ago
  3. c3d6ad4 Bump actions/checkout from 3.5.0 to 3.5.2 (#36) by dependabot[bot] · 5 months ago
  4. 660ad87 blast_repo fixes (#35) by Kevin Moore · 6 months ago
  5. 36a1bd0 Bump min SDK, enable and fix new lints (#34) by Kevin Moore · 9 months ago

Dart CI pub package package publisher

A Dart HTTP client implemented using RawSynchronousSockets to allow for synchronous HTTP requests.

Using this package

Note: this package is only intended for very specialized use cases. For general HTTP usage, please see instead package:http.

This library should probably only be used to connect to HTTP servers that are hosted on ‘localhost’. The operations in this library will block the calling thread to wait for a response from the HTTP server. The thread can process no other events while waiting for the server to respond. As such, this synchronous HTTP client library is not suitable for applications that require high performance. Instead, such applications should use libraries built on asynchronous I/O, including dart:io and package:http, for the best performance.