pow static method

num pow(
  1. num x,
  2. num y
)

Implementation

static num pow(num x, num y) {
  return math.pow(x, y);
}