multi method

double multi(
  1. num b
)

两个数相乘(防止精度丢失)

Implementation

double multi(num b) => NumUtils.multi(this ?? 0, b).toDouble();