operator - method

Duration operator -(
  1. Duration other
)

Returns the difference between two Duration.

Implementation

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