parent property

String? parent
final

Represents the path to the parent container or directory, if any.

This allows hierarchical organization of folders or items, where a model can exist within another logical grouping.

Example:

final project = ProjectFolder(parent: 'users/123');
print(project.parent); // users/123

Implementation

final String? parent;