requests 4.7.0 copy "requests: ^4.7.0" to clipboard
requests: ^4.7.0 copied to clipboard

a flutter library that helps with http requests and stored cookies

example/main.dart

import 'package:requests/requests.dart';

void main(List<String> arguments) async {
  // This example uses the Google Books API to search for books about requests.
  // https://developers.google.com/books/docs/overview
  var url = 'https://www.googleapis.com/books/v1/volumes?q={requests}';

  // Await the http get response, then decode the json-formatted response.
  var response = await Requests.get(url);
  if (response.statusCode == 200) {
    var jsonResponse = response.json();
    var itemCount = jsonResponse["totalItems"];
    print('Number of books about requests: $itemCount.');
  } else {
    print('Request failed with status: ${response.statusCode}');
  }
}
101
likes
130
pub points
91%
popularity

Publisher

unverified uploader

a flutter library that helps with http requests and stored cookies

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

crypto, hex, http, quiver

More

Packages that depend on requests