isWithinLastSevenDays static method
Implementation
static bool isWithinLastSevenDays(int date) {
DateTime dateTime = DateTime.fromMillisecondsSinceEpoch(date);
DateTime now = DateTime.now();
Duration difference = now.difference(dateTime);
return difference.inDays < 7;
}