operator ~/ method
- int quotient
override
Divides this Duration by the given quotient
and returns the truncated
result as a new Duration object.
The quotient
must not be 0
.
Implementation
@override
Duration operator ~/(int quotient) => duration ~/ quotient;