getChild method

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

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

@override
Future<Node?> getChild(String name) async {
  await _init();
  return _childNodes[name];
}