current property

String current
final

The unique path representing the model’s current location within the bucket hierarchy.

This value serves as the direct reference for storage, retrieval, or identification of the item in its context.

Example:

final file = FileFolder(current: 'users/123/documents/file.pdf');
print(file.current); // users/123/documents/file.pdf

Implementation

final String current;