shiftLeft method

BigInt shiftLeft(
  1. int decimalPlaces
)

Implementation

BigInt shiftLeft(int decimalPlaces) =>
    this * BigInt.from(pow(10, decimalPlaces));