操作符 > 方法

bool operator >(
  1. Duration other
)

判断当前 Duration 是否比 other 更长。

实现方式

bool operator >(Duration other) => this._duration > other._duration;