Acos constructor

Acos()

Implementation

Acos()
  : super(
      methodName: "acos",
      targetType: NativeMethodTarget.number,
      arity: 0,
      function: (target, interpreter, arguments) {
        return math.acos(target);
      },
    );