PathUri.cwd constructor
PathUri.cwd()
Creates a new empty path URI representing the current working directory.
Implementation
factory PathUri.cwd() => PathUri(
isAbsolute: false,
isDirectory: true,
pathSegments: BuiltList(),
);