0 purchases
edge http client unofficial
Dart Edge Http Client #
This package provides a Dart package for using the http package in Edge environments.
Usage #
A simple usage example:
import 'package:edge_http_client/edge_http_client.dart';
import 'package:http/http.dart' as http;
void main() {
runWithClient(myFunction, () => EdgeHttpClient());
}
Future<void> myFunction() async {
final response = await http.get(Uri.https('www.example.com', ''));
}
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.