Pow constructor

Pow()

Implementation

Pow()
  : super(
      methodName: "pow",
      targetType: NativeMethodTarget.number,
      arity: 1,
      function: (target, interpreter, arguments) {
        return math.pow(target, arguments[0]);
      },
    );