origins property

List<String>? get origins

When present, only data for origins in this list is deleted. Only supported for cookies, storage and cache. Cookies are cleared for the whole registrable domain.

Implementation

List<String>? get origins =>
    _wrapped.origins?.toDart.cast<String>().map((e) => e).toList();
set origins (List<String>? v)

Implementation

set origins(List<String>? v) {
  _wrapped.origins = v?.toJSArray((e) => e);
}