Time.copy constructor

Time.copy(
  1. Time other
)

Implementation

factory Time.copy(Time other) {
  return Time(
      hours: other.hours, minutes: other.minutes, seconds: other.seconds);
}