shiftRight method

BigInt shiftRight(
  1. int decimalPlaces
)

Implementation

BigInt shiftRight(int decimalPlaces) =>
    this ~/ BigInt.from(pow(10, decimalPlaces));