health method

Future<IndexerHealth> health()

Get the health status of the indexer.

Throws AlgorandException if unable to fetch the health status.

Implementation

Future<IndexerHealth> health() async {
  return _indexerRepository.health();
}