bool isAbsolute

Is this an absolute path?

Source

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