isRelative method
Returns true if the Path is relative, i.e., not absolute.
Implementation
bool isRelative() => Env.isWindows
? WindowsPath(_string).isRelative()
: UnixPath(_string).isRelative();
Returns true if the Path is relative, i.e., not absolute.
bool isRelative() => Env.isWindows
? WindowsPath(_string).isRelative()
: UnixPath(_string).isRelative();