fun LocalTime.add(hours: Int = 0, minutes: Int = 0, seconds: Int = 0): LocalTime Add specified number of hours, minutes, or seconds to this time. If the argument is not specified, 0 will be added. If the resulting value is bigger than 23:59:59, the value will be wrapped (e.g. to 00:00:00)
Return
A new resulting LocalTime object.