setStorageConfig static method

void setStorageConfig(
  1. StorageConfig config
)

Set storage configuration

设置存储配置

config 存储路径配置

Implementation

static void setStorageConfig(StorageConfig config) {
  _storageConfig = StorageConfig(
    cachePath: _processPath(config.cachePath),
    filesPath: _processPath(config.filesPath),
  );
  logi('Updated _storageConfig to: $_storageConfig');
}