findAll method

  1. @override
List<T> findAll()
override

Returns all models of type T in local storage.

Implementation

@override
List<T> findAll() {
  return box!.values.toImmutableList();
}