setCustomConditionValue method

  1. @override
Future<void> setCustomConditionValue(
  1. String key,
  2. String value
)
override

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);
  }
}