health method Null safety

Future<bool> health ()

Checks if the node is healthy.

Returns true if the node is healthy.

Implementation

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