onSecondChange method
Change handler for the second
Implementation
void onSecondChange(double value) {
setState(() {
time = time.replacing(second: value.ceil());
});
}
Change handler for the second
void onSecondChange(double value) {
setState(() {
time = time.replacing(second: value.ceil());
});
}