difference method

Duration difference(
  1. Time other
)

Returns the length between this Time and other.

Implementation

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