isolate_http 2.1.1 copy "isolate_http: ^2.1.1" to clipboard
isolate_http: ^2.1.1 copied to clipboard

outdated

IsolateHttp provides a way to launch 'http' library in Isolate with IsolatesFlutter.

example/main.dart

import 'package:isolate_http/isolate_http.dart';

void main(List<String> args) async {
  // https://developers.google.com/books
  final _response = await IsolateHttp(
          timeout: Duration(seconds: 60), debugLabel: 'search_book')
      .get('https://www.googleapis.com/auth/books/v1/volumes',
          query: {'q': 'flutter'});
  if (_response?.statusCode == 200) {
    final _bodyJson = _response?.bodyJson;
    print(_bodyJson);
  } else {
    print('Request failed with status: ${_response?.statusCode}.');
  }
}
10
likes
0
pub points
73%
popularity

Publisher

unverified uploader

IsolateHttp provides a way to launch 'http' library in Isolate with IsolatesFlutter.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, http, http_parser, isolate_flutter

More

Packages that depend on isolate_http