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