path property

String? get path

The path of the cookie. Defaults to the path portion of the url parameter.

Implementation

String? get path => _wrapped.path;
set path (String? v)

Implementation

set path(String? v) {
  _wrapped.path = v;
}