stream method

Stream<T> stream()

Returns a stream of entries

Implementation

Stream<T> stream() async* {
  for (final key in box.keys) {
    final it = await box.get(key);
    if (it != null) yield it;
  }
}