Time.copy constructor

Time.copy(
  1. Time other
)

Implementation

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