onHourChange method
Change handler for the hour
Implementation
void onHourChange(double value) {
setState(() {
time = time.replacing(hour: value.round());
});
}
Change handler for the hour
void onHourChange(double value) {
setState(() {
time = time.replacing(hour: value.round());
});
}