bool operator ==(other)

Returns true if this Duration is the same object as other.

Source

bool operator ==(other) {
  if (other is !Duration) return false;
  return _duration == other._duration;
}