isCollectionIndexReady method

bool isCollectionIndexReady(
  1. String collectionId
)

Whether a specific collection index is ready for full-quality search.

Implementation

bool isCollectionIndexReady(String collectionId) {
  final normalized = _normalizeCollectionId(collectionId);
  final service = _collectionServices[normalized];
  if (service == null) return false;
  return service.isIndexReady;
}