collectionParentPath property

String get collectionParentPath
inherited

Implementation

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