actionableSliderHoursContext function
Implementation
String actionableSliderHoursContext(
double min, double max, double val) =>
val > max
? "Greater than $max hours"
: val < min
? "Less than $min hour"
: "$val hours";