Returns true if this date is in the same minute as other.
true
other
bool isSameMinute(DateTime other) => isSameHour(other) && minute == other.minute;