isThisWeek static method

bool isThisWeek(
  1. DateTime date
)

Check if a date is in the current week

Implementation

static bool isThisWeek(DateTime date) {
  final now = DateTime.now();
  return isSameWeek(date, now);
}