isNextWeek static method

bool isNextWeek(
  1. DateTime date
)

Check if a date is next week

Implementation

static bool isNextWeek(DateTime date) {
  final now = DateTime.now();
  final nextWeek = now.add(const Duration(days: 7));
  return isSameWeek(date, nextWeek);
}