isAbsolute property
bool
get
isAbsolute
Is this an absolute path?
Implementation
bool get isAbsolute {
return name == '/' || parentPath.startsWith('/');
}
Is this an absolute path?
bool get isAbsolute {
return name == '/' || parentPath.startsWith('/');
}