此方法返回数字值的双重表示。
Number.toDouble()
返回表示指定Number对象的double 。
void main() { int n1 = 2; var value = n1.toDouble(); print("Output = ${value}"); }
它将产生以下output - 。
Output = 2.0