isAbsolute property

bool get isAbsolute

Is this an absolute path?

Implementation

bool get isAbsolute {
  return name == '/' || parentPath.startsWith('/');
}