MemoryFileStat constructor

MemoryFileStat(
  1. MapBasedFileSystem _fs,
  2. String path
)

Creates a new MemoryFileStat instance.

Implementation

MemoryFileStat(this._fs, String path)
    : _path = _fs.resolve(path),
      _impl = _fs.get(path);