RemoveResponseCookie class
Removes one or more cookies of response. Note that it is preferred to use the Cookies API because this is computationally less expensive.
class RemoveResponseCookie extends ChromeObject {
RemoveResponseCookie({FilterResponseCookie filter}) {
if (filter != null) this.filter = filter;
}
RemoveResponseCookie.fromProxy(JsObject jsProxy): super.fromProxy(jsProxy);
/**
* Filter for cookies that will be removed. All empty entries are ignored.
*/
FilterResponseCookie get filter => _createFilterResponseCookie(jsProxy['filter']);
set filter(FilterResponseCookie value) => jsProxy['filter'] = jsify(value);
}
Extends
ChromeObject > RemoveResponseCookie
Constructors
new RemoveResponseCookie({FilterResponseCookie filter}) #
Create a new instance of a ChromeObject, which creates and delegates to
a JsObject proxy.
docs inherited from ChromeObject
RemoveResponseCookie({FilterResponseCookie filter}) {
if (filter != null) this.filter = filter;
}
new RemoveResponseCookie.fromProxy(JsObject jsProxy) #
Create a new instance of a ChromeObject, which delegates to the given
JsObject proxy.
docs inherited from ChromeObject
RemoveResponseCookie.fromProxy(JsObject jsProxy): super.fromProxy(jsProxy);
Properties
FilterResponseCookie filter #
Filter for cookies that will be removed. All empty entries are ignored.
FilterResponseCookie get filter => _createFilterResponseCookie(jsProxy['filter']);
set filter(FilterResponseCookie value) => jsProxy['filter'] = jsify(value);
Methods
String toString() #
inherited from ChromeObject
Returns a string representation of this object.
docs inherited from Object
String toString() => jsProxy.toString();