MissingBrowserFeature enum
An enumeration of features not supported by the current browsers.
While this information may not be useful to end users, it can be used to understand why a particular file system implementation is unavailable.
Values
-
The browser is missing support for shared workers.
- dedicatedWorkers → const MissingBrowserFeature
-
The browser is missing support for web workers in general.
-
The browser doesn't allow shared workers to spawn dedicated workers in their context.
While the specification for web workers explicitly allows this, this feature is only implemented by Firefox at the time of writing.
- dedicatedWorkersCanNest → const MissingBrowserFeature
-
The browser doesn't allow dedicated workers to spawn their own dedicated workers.
- fileSystemAccess → const MissingBrowserFeature
-
The browser does not support a synchronous version of the File System API
- indexedDb → const MissingBrowserFeature
-
The browser does not support IndexedDB.
-
The browser does not support shared array buffers and
Atomics.wait
.To enable this feature in most browsers, you need to serve your app with two special headers.
Properties
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Constants
-
values
→ const List<
MissingBrowserFeature> - A constant List of the values in this enum, in order of their declaration.