convertIntToTimeByCeylan function
Implementation
convertIntToTimeByCeylan(int value) {
int hour = value ~/ (60 * 60);
int minute = (value - hour * (60 * 60)) ~/ 60;
return "${requestZeroFirstText(hour)}h${requestZeroFirstText(minute)}";
}
convertIntToTimeByCeylan(int value) {
int hour = value ~/ (60 * 60);
int minute = (value - hour * (60 * 60)) ~/ 60;
return "${requestZeroFirstText(hour)}h${requestZeroFirstText(minute)}";
}