multiply (without loosing precision). 两个数相乘(防止精度丢失)
double multiplyNum(num a, num b) { return multiplyDec(a, b)?.toDouble() ?? 0.0; }