collectionParentPath property
Implementation
String get collectionParentPath {
final lastSlashIndex = _path.lastIndexOf('/');
return lastSlashIndex == -1 ? '' : _path.substring(0, lastSlashIndex);
}
String get collectionParentPath {
final lastSlashIndex = _path.lastIndexOf('/');
return lastSlashIndex == -1 ? '' : _path.substring(0, lastSlashIndex);
}