setCustomConditionValue method
Implementation
@override
Future<void> setCustomConditionValue(String key, String value) async {
try {
return await methodChannel.invokeMethod(
"setCustomConditionValue", {'key': key, 'value': value});
} on PlatformException catch (e, s) {
print(s);
}
}