Checks to see if Indexed DB is supported on the current platform.
Source
static bool get supported {
return JS(
'bool',
'!!(window.indexedDB || '
'window.webkitIndexedDB || '
'window.mozIndexedDB)');
}
Checks to see if Indexed DB is supported on the current platform.
static bool get supported {
return JS(
'bool',
'!!(window.indexedDB || '
'window.webkitIndexedDB || '
'window.mozIndexedDB)');
}