isWithinNextMinutes method
Checks if the current time is within the next N minutes
Implementation
bool isWithinNextMinutes(int minutes) {
final now = DateTime.now();
final futureTime = now.add(Duration(minutes: minutes));
return isAfter(now) && isBefore(futureTime);
}