pow constructor

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

Calculate a^b.

Implementation

const factory pow(num a, num b) = ConstMath.pow;