getLink method

  1. @override
Link getLink(
  1. String path
)
override

Return a Link that corresponds to the given path.

The path must be absolute and normalized.

A link may or may not exist at this location.

Implementation

@override
Link getLink(String path) {
  _ensureAbsoluteAndNormalized(path);
  return _MemoryLink(this, path);
}