countAllCachedImage function

Future<int> countAllCachedImage(
  1. ObjectBox objectbox
)

Implementation

Future<int> countAllCachedImage(ObjectBox objectbox) async {
  final query = objectbox.cachedImageInfoBox.getAll();
  return query.length;
}