power method

double power(
  1. num exponent
)

Implementation

double power(num exponent) {
  return pow(this, exponent).toDouble();
}