加 (精确相加,防止精度丢失). add (without loosing precision).
double? add(num value) { if (this == null) { return null; } return NumUtil.addDec(this!, value).toDouble(); }