multiply method

double? multiply(
  1. num value
)

乘 (精确相乘,防止精度丢失). multiply (without loosing precision).

Implementation

double? multiply(num value) {
  if (this == null) {
    return null;
  }
  return NumUtil.multiplyDec(this!, value).toDouble();
}