Skip to content

festelo/isolated_http_client

Repository files navigation

A library for Dart developers.

Created from templates made available by Stagehand under a BSD-style license.

Usage

A simple usage example:

import 'package:isolated_http_client/isolated_http_client.dart';

main() {
  await Executor().warmUp();
    final client = HttpClient(log: true);
    final r = await client.get(
        host: 'https://postman-echo.com/get?foo1=bar1&foo2=bar2');
    print(r.body);
    final r2 =
        await client.post(host: 'https://postman-echo.com/post', body: '123');
    print(r2.body);
}

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published