path property

String? get path

Restricts the retrieved cookies to those whose path exactly matches this string.

Implementation

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

Implementation

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