absolutePath method

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

Returns an absolute addressed path without requiring it to exist and without resolving symlinks.

Implementation

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