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