toDouble 抽象方法

double toDouble()

将此 BigInt 转换为 double 类型。

如果数字无法表示为 double 类型,则返回一个近似值。对于数值很大的整数,近似值可能是无穷大。

示例

var bigNumber = BigInt.parse('100000000000000000000000');
print(bigNumber.toDouble()); // 1e+23

实现

double toDouble();