inMinutes method

int inMinutes()

Implementation

int inMinutes() {
  return this.hour * 60 + this.minute;
}