quotaBytesPerItem property
int
get
quotaBytesPerItem
The maximum size (in bytes) of each individual item in sync storage, as
measured by the JSON stringification of its value plus its key length.
Updates containing items larger than this limit will fail immediately and
set runtime.lastError
.
Implementation
int get quotaBytesPerItem => _wrapped.QUOTA_BYTES_PER_ITEM;
set
quotaBytesPerItem
(int v)
Implementation
set quotaBytesPerItem(int v) {
_wrapped.QUOTA_BYTES_PER_ITEM = v;
}