operator + method

Duration operator +(
  1. Duration other
)

Returns the sum of two Duration.

Implementation

Duration operator +(Duration other) =>
    Duration(microseconds: inMicroseconds + other.inMicroseconds);