operator ~/ method
Divides this Time by the given quotient
and returns the truncated
result as a new Time object.
Throws an UnsupportedError if quotient
is 0
.
Implementation
Time operator ~/(int quotient) {
// By doing the check here instead of relying on "~/" below we get the
// exception even with dart2js.
if (quotient == 0) throw UnsupportedError("Dividing by 0");
return Time(ticks ~/ quotient);
}