isBetween method
Implementation
bool isBetween(TimeOfDay start, TimeOfDay end) {
if (start.isBefore(end)) {
return isAfter(start) && isBefore(end);
}
// Gece yarısını aşan aralıklar: 22:00 - 06:00 gibi
return isAfter(start) || isBefore(end);
}