Time.fromParts constructor

Time.fromParts(
  1. int hours,
  2. int minutes,
  3. int seconds
)
Initializes a new instance of Time. The hours. The minutes. The seconds.

Implementation

Time.fromParts(int hours, int minutes, int seconds) {
  this.Hours = hours;
  this.Minutes = minutes;
  this.Seconds = seconds;
}