setFilesPath static method

void setFilesPath(
  1. String path
)

Set files path

Implementation

static void setFilesPath(String path) {
  loge('setFilesPath called with: $path');
  _storageConfig = (_storageConfig ?? const StorageConfig()).copyWith(
    filesPath: _processPath(path),
  );
  logi('Updated filesPath to: ${_storageConfig?.filesPath}');
}