setSecond method
Sets the second and notifies listeners.
Implementation
void setSecond(int? second) {
if (this.second == second) return;
this.second = second;
notifyListeners();
}
Sets the second and notifies listeners.
void setSecond(int? second) {
if (this.second == second) return;
this.second = second;
notifyListeners();
}