native_http

Last updated:

0 purchases

native_http Image
native_http Images
Add to Cart

Description:

native http

native_http #
A package that calls network from native platform ie OkHttp on Android and URLSession iOS.
Getting Started #
import 'package:native_http/native_http.dart' as native_http;

Future<void> runCalls() async {
native_http.NativeResponse respGet =
await native_http.get("http://example.com/get");
print(respGet.body);
native_http.NativeResponse respPost = await native_http.post(
"http://example.com/get",
body: {"username": "username", "password": "password"},
);
print(respPost.body);
}

copied to clipboard

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.