getResource method

  1. @override
Resource getResource(
  1. String path
)
override

Return the Resource that corresponds to the given path.

The path must be absolute and normalized.

Implementation

@override
Resource getResource(String path) {
  _ensureAbsoluteAndNormalized(path);
  var data = _pathToData[path];
  return data is _FolderData
      ? _MemoryFolder(this, path)
      : _MemoryFile(this, path);
}