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