EllaTime.fromComponents constructor

EllaTime.fromComponents(
  1. int hours,
  2. int minutes,
  3. int seconds
)

Construct from time components

Implementation

factory EllaTime.fromComponents(int hours, int minutes, int seconds)
{
  return new EllaTime( componentsToSeconds(hours, minutes, seconds) );
}