pow method

double pow(
  1. int exponent
)

Returns pow of this.

Implementation

double pow(int exponent) {
  return math.pow(this, exponent).toDouble();
}