time.copyContructor constructor
Implementation
time.copyContructor({this.hour, this.minute, this.second, this.isMilitary}) {
this.str =
"${this.hour.toString().padLeft(2,"0")}:${this.minute.toString().padLeft(2,"0")}:${this.second.toString().padLeft(2,"0")}";
}