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