status method Null safety

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 await _nodeRepository.status();
}