Convert Time Format
String hcFormatTime(int timeNum) => timeNum < 10 ? "0$timeNum" : timeNum.toString();