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