乘 a*b Multiplies two nullable string numbers
static Decimal multiplyStr(String? a, String? b) { return _safeParse(a) * _safeParse(b); }