parent property

Path parent

Implementation

Path get parent {
  if (isEmpty) {
    return this;
  }
  return Path.from(this, growable: true)..removeLast();
}