operator / method

double operator /(
  1. Duration other
)

Implementation

double operator /(Duration other) => other.inMicroseconds == 0
    ? 0
    : (this?.inMicroseconds ?? 0) / other.inMicroseconds;