endPath method

String endPath(
  1. String path
)

Given a path within the schema, follow all references to an end path pointing to a JsonSchema.

Implementation

String endPath(String path) {
  _pathsEncountered.clear();
  return _endPath(path);
}