cookie_wrapper 0.1.0 cookie_wrapper: ^0.1.0 copied to clipboard
An HTTP Cookies implementation for the client to get, set and remove cookies. It is very simple and well tested. Uses a package test to maintain capability on all platforms.
Cooky #
An HTTP Cookies implementation for the client.
Usage #
import 'package:cooky/cooky.dart' as cookie;
setCookie() async {
cookie.set('key', 'value');
}
See our example/example.dart for a more complete example.