difference method

Duration difference(
  1. Time other
)

Returns the difference between this and other.

Implementation

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