subtract (without loosing precision). 两个数相减(防止精度丢失)
double subtractNum(num a, num b) { return subtractDec(a, b)?.toDouble() ?? 0.0; }