yCheckUpdate function
void
yCheckUpdate({})
检测更新
Implementation
void yCheckUpdate({
required int newVersion,
required String updateContent,
required String? apkDownloadPath,
required String? androidAppId,
required String? iOSAppId,
bool enableIgnore = false,
Function()? onNewest,
}) {
_getPlugin()!.checkUpdate(newVersion: newVersion, updateContent: updateContent, apkDownloadPath: apkDownloadPath, androidAppId: androidAppId, iOSAppId: iOSAppId, enableIgnore: enableIgnore, onNewest: onNewest);
}