getNode method

Future<Node> getNode(
  1. String path
)

Implementation

Future<toolbox_api.Node> getNode(String path) async {
  ///log("GET TOOLBOX STORAGE NODE");
  toolbox_api.Node node = await _storageController.get(path);
  return node;
}