getMinute method

String getMinute()

It writes the full minute for any string format

Implementation

String getMinute(){
  return this.minute == 0 ? "00" : this.minute.toString();
}