Pre-caches a video URL
static Future<void> preCacheVideo(String url) async { try { await instance.downloadFile(url); } catch (e) { debugPrint('Error pre-caching video: $e'); } }