hasNode method

bool hasNode(
  1. String path
)

Checks if this provider has the node at path.

Implementation

bool hasNode(String path) {
  var node = nodes[path] as SimpleNode?;

  if (node == null) {
    return false;
  }

  if (node.isStubNode == true) {
    return false;
  }

  return true;
}