health method Null safety
Checks if the node is healthy.
Returns true if the node is healthy.
Implementation
Future<bool> health() async {
return await _nodeRepository.health();
}
Checks if the node is healthy.
Returns true if the node is healthy.
Future<bool> health() async {
return await _nodeRepository.health();
}