last7Days static method
Implementation
static DateRangePreset last7Days() {
final now = DateTime.now();
final start = now.subtract(const Duration(days: 6));
return DateRangePreset(
label: 'Last 7 Days',
startDate: _formatDate(start),
endDate: _formatDate(now),
);
}