Move a file.
Future<void> moveFile( String from, String to, { String disk = 'public', }) async { final storage = _storageManager.disk(disk); await storage.move(from, to); }