运算符 + 方法

Duration operator +(
  1. Duration other
)

将此 Duration 和 other 相加,并返回作为新 Duration 对象的和。

实现

Duration operator +(Duration other) {
  return Duration._microseconds(_duration + other._duration);
}