pow static method

num pow(
  1. num a,
  2. num b
)

Implementation

static num pow(num a, num b) {
  return DartMath.pow(a, b);
}