getAll method

List<T> getAll()

Returns all stored objects in this Box.

Implementation

List<T> getAll() => InternalStoreAccess.runInTransaction(
    _store, TxMode.read, (Transaction tx) => tx.cursor(_entity).getAll());