status method

Future<NodeStatus> status()

Gets the current node status.

Throws an AlgorandException if there is an HTTP error. Returns the current node status.

Implementation

Future<NodeStatus> status() async {
  return _nodeRepository.status();
}