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);
  if (io.FileSystemEntity.isDirectorySync(path)) {
    return getFolder(path);
  } else {
    return getFile(path);
  }
}