操作符 - 方法

Duration operator -(
  1. Duration other
)

从当前 Duration 中减去 other,并返回差值作为一个新的 Duration 对象。

实现

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