Round constructor

Round()

Implementation

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