exists method

  1. @override
bool exists(
  1. String path
)
override

Whether a file at path exists.

Implementation

@override
bool exists(String path) {
  _checkClosed();
  return _memory.exists(path);
}