isLastWeek static method

bool isLastWeek(
  1. DateTime date
)

Check if a date is last week

Implementation

static bool isLastWeek(DateTime date) {
  final now = DateTime.now();
  final lastWeek = now.subtract(const Duration(days: 7));
  return isSameWeek(date, lastWeek);
}