pathMap property

Map<String, Node> pathMap
final

Implementation

static final Map<String, Node> pathMap = () {
  var rslt = <String, Node>{};
  nameMap.forEach((k, node) {
    if (node is RemoteNode) {
      rslt[node.remotePath] = node;
    }
  });
  return rslt;
}();