equalTime method
Compara igualdade entre dois DateTime desconsiderando data. É possível configurar para considerar segundos.
Implementation
bool equalTime(DateTime other, [bool includeSeconds = true]) {
bool isSecondsEqual = includeSeconds ? second == other.second : true;
return hour == other.hour && minute == other.minute && isSecondsEqual;
}