floor static method

num floor(
  1. num n
)

Implementation

static num floor(num n) {
  return n.floor();
}