MemVfsFile constructor

MemVfsFile(
  1. String _path
)

Implementation

MemVfsFile(this._path) {
  _store.putIfAbsent(_path, () => Uint8List(0));
}