health method

Future<bool> health()

Checks if the node is healthy.

Returns true if the node is healthy.

Implementation

Future<bool> health() async {
  return _nodeRepository.health();
}