setShowStoreAlertOnFulFillingCriteria method
Implementation
@override
Future<void> setShowStoreAlertOnFulFillingCriteria(bool isShow) async {
try {
final checkAndroidPlayCoreAlert = await methodChannel.invokeMethod<bool>(
"setShowStoreAlertOnFulFillingCriteria", {'isShow': isShow});
if (checkAndroidPlayCoreAlert != null) {
_showStoreAlertOnFulFillingCriteria = isShow;
}
} on PlatformException catch (e, s) {
print(s);
}
}