getTotalMinutes method

double getTotalMinutes()

Gets the number of minutes including fractional minutes.

@return the number of minutes.

Implementation

double getTotalMinutes() {
  return (this.time / 1000.0) / 60.0;
}