collectionArchiveFilePath function

String collectionArchiveFilePath(
  1. String siteId,
  2. String fileName
)

Implementation

String collectionArchiveFilePath(String siteId, String fileName) {
  if (fileName.isEmpty) {
    return '${_root()}/$siteId';
  }
  return '${_root()}/$siteId/$fileName';
}