bigIntToDecimal converts a given big int to decimal number
double bigIntToDecimal(BigInt value, int decimals) { return value.toDouble() / pow(10, decimals); }