pow method

double pow(
  1. num exp
)

Implementation

double pow(num exp) {
  return math.pow(toDouble(), exp).toDouble();
}