Background: While writing Dart frontend and backend code, I've found it nice to have the core of my server's logic be non-"dart:io" - allowing me to have a better integration testing story and a "run everything in the browser" story (e.g. https://jtmcdole.github.io/auth_simulator/).
What I'm missing most of the time is platform agnostic versions of the following types:
Along with any extensions to convert platform-specific classes to package:http classes (request/response).
e.g.:
- Cocoon (Flutter's infra orchestrator) runs on AppEngine.
Background: While writing Dart frontend and backend code, I've found it nice to have the core of my server's logic be non-"dart:io" - allowing me to have a better integration testing story and a "run everything in the browser" story (e.g. https://jtmcdole.github.io/auth_simulator/).
What I'm missing most of the time is platform agnostic versions of the following types:
Along with any extensions to convert platform-specific classes to package:http classes (request/response).
e.g.: