I got this error from the files module in a Drupal 9.3 website:
How to fix Error: Call to undefined method Drupal\Core\File\FileSystem::uriScheme()
The resolution was to replace the urlScheme call with
replace:
\Drupal::service('file_system')->uriScheme($uri);
with:
use Drupal\Core\StreamWrapper\StreamWrapperManager;
StreamWrapperManager::getScheme($uri);