setCustomConditionValue method

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

Set custom condition key and value. @param key String key. @param value String Value for the condition.

Implementation

Future<void> setCustomConditionValue(String key, String value) async {
  return await AppticsFlutterPlatform.instance.setCustomConditionValue(key, value);
}