divide(value) ⇒ Toybox.Time.Duration
Divide a Duration by a value.
WERETECH-10631
Divide a Duration by a value.
Parameters:
The value by which to divide the Duration
Example:
using Toybox.Time;
var fourHours = new Time.Duration(14800);<--------------------- SHOULD BY 14400
var twoHours = fourHours.divide(2);
Returns:
The quotient of the Duration and the supplied value