hours method
Format when time is in hours
Implementation
@override
String hours(int hours) {
if (hours == 1) {
return 'an hour';
} else if (hours > 1 && hours < 11) {
return 'about $hours hours';
} else {
return '$hours hours';
}
}