getChild abstract method

Future<Node?> getChild(
  1. String name
)

Gets a child node from the current node.

@param name the name of the child node to fetch @return the requested child node or null if the node does not exist @throws StorageException if the storage backend encounters a problem

Implementation

Future<Node?> getChild(String name);