operator == method

bool operator == (dynamic other)

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

Implementation

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