getAll method
Returns all stored objects in this Box.
Implementation
List<T> getAll() => InternalStoreAccess.runInTransaction(
_store, TxMode.read, (Transaction tx) => tx.cursor(_entity).getAll());
Returns all stored objects in this Box.
List<T> getAll() => InternalStoreAccess.runInTransaction(
_store, TxMode.read, (Transaction tx) => tx.cursor(_entity).getAll());