getAll method

Future<List<T>> getAll()

Implementation

Future<List<T>> getAll() async {
  return await ref.watch(crudServiceProvider<T>().notifier).getAllItems();
}