Check if a date is in the current week
static bool isThisWeek(DateTime date) { final now = DateTime.now(); return isSameWeek(date, now); }