kmulti method

double kmulti(
  1. num b
)

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

Implementation

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