add (without loosing precision). 两个数相加(防止精度丢失)
double addNum(num a, num b) { return addDec(a, b)?.toDouble() ?? 0.0; }