isWithinLastSevenDays static method

bool isWithinLastSevenDays(
  1. int date
)

Implementation

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