Override the / operator to divide a Duration by an int.
Duration operator /(int other) => Duration(microseconds: inMicroseconds ~/ other);