Cookie.new constructor - Cookie - dart:io library (original) (raw)
Cookie(
Creates a new cookie setting the name and value.
name
and value
must be composed of valid characters according to RFC 6265.
By default the value of httpOnly
will be set to true
.
Implementation
factory Cookie(String name, String value) => _Cookie(name, value);