getStats method

Future<SourceStats> getStats({
  1. String? collectionId,
})

Get statistics about stored sources and chunks.

Implementation

Future<SourceStats> getStats({String? collectionId}) async {
  final service = await _serviceForCollection(collectionId);
  return service.getStats();
}