InMemoryFileInfo constructor

InMemoryFileInfo(
  1. String path, {
  2. DirectoryInfoBase? parent,
})

Creates an in-memory file with the specified path.

Implementation

InMemoryFileInfo(String path, {DirectoryInfoBase? parent})
    : _path = path,
      _parent = parent;