DataTypeSet constructor
DataTypeSet({})
Implementation
DataTypeSet({
/// Websites' appcaches.
bool? appcache,
/// The browser's cache.
bool? cache,
/// Cache storage
bool? cacheStorage,
/// The browser's cookies.
bool? cookies,
/// The browser's download list.
bool? downloads,
/// Websites' file systems.
bool? fileSystems,
/// The browser's stored form data.
bool? formData,
/// The browser's history.
bool? history,
/// Websites' IndexedDB data.
bool? indexedDb,
/// Websites' local storage data.
bool? localStorage,
/// Server-bound certificates.
bool? serverBoundCertificates,
/// Stored passwords.
bool? passwords,
/// Plugins' data.
bool? pluginData,
/// Service Workers.
bool? serviceWorkers,
/// Websites' WebSQL data.
bool? webSql,
}) : _wrapped = $js.DataTypeSet(
appcache: appcache,
cache: cache,
cacheStorage: cacheStorage,
cookies: cookies,
downloads: downloads,
fileSystems: fileSystems,
formData: formData,
history: history,
indexedDB: indexedDb,
localStorage: localStorage,
serverBoundCertificates: serverBoundCertificates,
passwords: passwords,
pluginData: pluginData,
serviceWorkers: serviceWorkers,
webSQL: webSql,
);