将此 BigInt 对象转换为 double。
如果数字无法表示为 double ,则返回近似值。对于数值很大的整数,近似值可能是无穷大。
示例
var bigNumber = BigInt.parse('100000000000000000000000'); print(bigNumber.toDouble()); // 1e+23
double toDouble();