kadd method

double kadd(
  1. num b
)

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

Implementation

double kadd(num b) => _KNumUtils.add(this ?? 0, b).toDouble();