Floor constructor

Floor()

Implementation

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