checkUpdate static method
Implementation
static void checkUpdate(BuildContext context,
XupdateEntity.UpdateEntity params,{UpdateConfig? config}) {
prompter ??= UpdatePrompter(
updateEntity: params,
onInstall: (String filePath) {
CommonUtils.installAPP(filePath);
});
if (!isUpdateDialogShow() && !prompter!.isRetryDialogShow()) {
prompter!.setUpdateEntity(params);
prompter!.show(context,config: config);
}
}