getCurrentRequestCountPerDay method
Gets the current request count for the given domain (per day)
Implementation
int getCurrentRequestCountPerDay(String domain) {
_requestTimestampsPerDay[domain] ??= Queue<DateTime>();
_cleanupOldTimestamps(domain, DateTime.now());
return _requestTimestampsPerDay[domain]!.length;
}