operator ~/ method
- intquotient
Divides this Duration by the givenquotient and returns the truncatedresult as a new Duration object.
Thequotient must not be0.
Implementation
Duration operator ~/(int quotient) { // By doing the check here instead of relying on "~/" below we get the // exception even with dart2js. if (quotient == 0) throw IntegerDivisionByZeroException(); return Duration._microseconds(_duration ~/ quotient);}