quotaBytes property
int
get
quotaBytes
The maximum total amount (in bytes) of data that can be stored in sync
storage, as measured by the JSON stringification of every value plus every
key's length. 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;
}