shiftRightBigInt function

double shiftRightBigInt(
  1. BigInt num1,
  2. int decimalPlaces
)

Implementation

double shiftRightBigInt(BigInt num1, int decimalPlaces) =>
    num1.toInt() / pow(10, decimalPlaces);