maxItems property

int get maxItems

The maximum number of items that can be stored in sync storage. Updates that would cause this limit to be exceeded will fail immediately and set runtime.lastError.

Implementation

int get maxItems => _wrapped.MAX_ITEMS;
set maxItems (int v)

Implementation

set maxItems(int v) {
  _wrapped.MAX_ITEMS = v;
}