setMinute method

void setMinute(
  1. int? minute
)

Sets the minute and notifies listeners.

Implementation

void setMinute(int? minute) {
  if (this.minute == minute) return;
  this.minute = minute;
  notifyListeners();
}