runCondition method

  1. @override
bool? runCondition(
  1. String expression,
  2. Map<String, Object?> value, {
  3. Map<String, Object?>? properties,
})
override

Implementation

@override
bool? runCondition(String expression, Map<String, Object?> value,
    {Map<String, Object?>? properties}) {
  return jsrunCondition(expression, jsonEncode(value),
      properties == null ? null : jsonEncode(properties));
}