Checks if this provider has the node at path.
Source
bool hasNode(String path) {
  SimpleNode node = nodes[path];
  if (node == null) {
    return false;
  }
  if (node.isStubNode == true) {
    return false;
  }
  return true;
}
    Checks if this provider has the node at path.
bool hasNode(String path) {
  SimpleNode node = nodes[path];
  if (node == null) {
    return false;
  }
  if (node.isStubNode == true) {
    return false;
  }
  return true;
}