getNode method

Future<Node> getNode(
  1. String id
)

Retrieves a node by its unique ID

Implementation

Future<Node> getNode(String id) async {
  return _repository.get(id);
}