url property

String get url

The URL with which the cookie to access is associated. This argument may be a full URL, in which case any data following the URL path (e.g. the query string) is simply ignored. If host permissions for this URL are not specified in the manifest file, the API call will fail.

Implementation

String get url => _wrapped.url;
set url (String v)

Implementation

set url(String v) {
  _wrapped.url = v;
}