getTotalMinutes method
Gets the number of minutes including fractional minutes.
@return the number of minutes.
Implementation
double getTotalMinutes() {
return (this.time / 1000.0) / 60.0;
}
Gets the number of minutes including fractional minutes.
@return the number of minutes.
double getTotalMinutes() {
return (this.time / 1000.0) / 60.0;
}