quotaBytes property

int get quotaBytes

The maximum amount (in bytes) of data that can be stored in memory, as measured by estimating the dynamically allocated memory usage of every value and key. 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;
}