operator / method

Duration operator /(
  1. int other
)

Override the / operator to divide a Duration by an int.

Implementation

Duration operator /(int other) =>
    Duration(microseconds: inMicroseconds ~/ other);