applyPatch method
Download and apply a patch (deprecated, use downloadAndInstall)
Implementation
@Deprecated('Use downloadAndInstall instead')
Future<bool> applyPatch(PatchInfo patch) async {
try {
return await _patchService.applyPatch(patch);
} catch (e) {
_config.onError?.call('Error applying patch: $e');
return false;
}
}