excludeOrigins property

List<String>? get excludeOrigins

When present, data for origins in this list is excluded from deletion. Can't be used together with origins. Only supported for cookies, storage and cache. Cookies are excluded for the whole registrable domain.

Implementation

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

Implementation

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