pow method

num pow(
  1. num x
)

Raises this value to the power x.

Implementation

num pow(num x) => math.pow(this, x);