divide (without loosing precision). 两个数相除(防止精度丢失)
double divideNum(num a, num b) { return divideDec(a, b)?.toDouble() ?? 0.0; }