Calculate 10 raised to the power of exponent
exponent
BigInt pow10(int exponent) { if (exponent == 0) return BigInt.one; return BigInt.from(math.pow(10, exponent)); }