stagedChildPath property

String get stagedChildPath

Implementation

String get stagedChildPath {
  final result = stagedChildPathSegments;
  if (result.isNotEmpty && result.last == '_INDEX_') {
    result.remove('_INDEX_');
  }

  return result.join('/');
}