hours method
Format when time is in hours
Implementation
@override
String hours(int hours) {
if (hours == 1) {
return 'bir saat';
} else if (hours > 1 && hours < 11) {
return 'təxminən $hours saat';
} else {
return '$hours saat';
}
}