index method

AlgoliaIndexReference index(
  1. String index
)

Return an AlgoliaIndexReference object that is a reference to the index with the given name.

Args: index (String): The name of the index you want to query.

Returns: An AlgoliaIndexReference object.

Implementation

AlgoliaIndexReference index(String index) {
  return AlgoliaIndexReference._(this, index);
}