library angular.core.facade.math; import 'dart:math' as math; class Math { static num pow(num x, num exponent) { return math.pow(x, exponent); } }