将此 Duration 乘以给定的 factor,并返回一个新的 Duration 对象。
factor
注意,当 factor 是双精度浮点数,且持续时间大于 53 位时,由于双精度算术,精度会丢失。
Duration operator *(num factor) { return Duration._microseconds((_duration * factor).round()); }