DataTypeSet constructor

DataTypeSet({
  1. bool? appcache,
  2. bool? cache,
  3. bool? cacheStorage,
  4. bool? cookies,
  5. bool? downloads,
  6. bool? fileSystems,
  7. bool? formData,
  8. bool? history,
  9. bool? indexedDb,
  10. bool? localStorage,
  11. bool? serverBoundCertificates,
  12. bool? passwords,
  13. bool? pluginData,
  14. bool? serviceWorkers,
  15. bool? webSql,
})

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,
      );