Atan constructor

Atan()

Implementation

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