exists method

  1. @override
Future<Result<bool, FileError>> exists(
  1. String path
)
override

Returns false for missing paths; other errors surface as Err.

Implementation

@override
Future<Result<bool, FileError>> exists(String path) => _fs.exists(path);