domain property

String? get domain

Restricts the retrieved cookies to those whose domains match or are subdomains of this one.

Implementation

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

Implementation

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