parentPath property

  1. @override
String? parentPath
override

Gets the parent path of the node.

Returns the parent path of the current node.

Implementation

@override
String? get parentPath {
  try {
    return getParentFromPath(_getSkeleton(Field.path));
  } on StorageException {
    throw Exception('Oops.... this should not happen... contact developer');
  }
}