Values constructor

Values()

Implementation

Values()
  : super(
      methodName: "values",
      targetType: .map,
      arity: 0,
      function: (target, interpreter, arguments) {
        return target.values.toList();
      },
    );