quotaBytes property

int get quotaBytes

The maximum amount (in bytes) of data that can be stored in local storage, as measured by the JSON stringification of every value plus every key's length. This value will be ignored if the extension has the unlimitedStorage permission. Updates that would cause this limit to be exceeded fail immediately and set runtime.lastError.

Implementation

int get quotaBytes => _wrapped.QUOTA_BYTES;
set quotaBytes (int v)

Implementation

set quotaBytes(int v) {
  _wrapped.QUOTA_BYTES = v;
}