divide method

Duration divide(
  1. int by
)

Implementation

Duration divide(int by) {
  return Duration(
    microseconds: inMicroseconds ~/ by,
  );
}