ContainsValue constructor

ContainsValue()

Implementation

ContainsValue()
  : super(
      methodName: "containsValue",
      targetType: .map,
      arity: 1,
      function: (target, interpreter, arguments) {
        return target.containsValue(arguments[0]);
      },
    );