Switch to using package:lints (#59)

Update the min SDK to 2.15.0 for `unawaited`.
5 files changed
tree: 8a98f902f4081aa382e51e58487ab04c933fd0fc
  1. .github/
  2. example/
  3. lib/
  4. test/
  5. .gitignore
  6. analysis_options.yaml
  7. AUTHORS
  8. CHANGELOG.md
  9. CONTRIBUTING.md
  10. LICENSE
  11. pubspec.yaml
  12. README.md
README.md

This package provides support for bi-directional communication through Server Sent Events and corresponding POST requests.

This package is not intended to be a general purpose SSE package, but instead is a bidirectional protocol for use when Websockets are unavailable. That is, both the client and the server expose a sink and stream on which to send and receive messages respectively.

Both the server and client have implicit assumptions on each other and therefore a client from this package must be paired with a server from this package.